1
0
mirror of https://github.com/RPCS3/rpcs3.git synced 2024-11-26 12:42:41 +01:00

Silence warnings in lv2/Modules

This commit is contained in:
Zion Nimchuk 2017-11-01 23:28:40 -07:00 committed by Nekotekina
parent b9b06143d2
commit 8276d29d4f
3 changed files with 7 additions and 5 deletions

View File

@ -164,6 +164,8 @@ s32 cellCameraInit()
camera->attr[CELL_CAMERA_AGCHIGH] = { 64 };
break;
}
default:
cellCamera.todo("Trying to init cellCamera with un-researched camera type.");
}
// TODO: Some other default attributes? Need to check the actual behaviour on a real PS3.

View File

@ -115,7 +115,7 @@ s32 cellHddGameCheck(ppu_thread& ppu, u32 version, vm::cptr<char> dirName, u32 e
if (dir.size() != 9)
{
return CELL_HDDGAME_ERROR_PARAM;
return (s32)CELL_HDDGAME_ERROR_PARAM;
}
vm::var<CellHddGameCBResult> result;
@ -165,7 +165,7 @@ s32 cellHddGameCheck(ppu_thread& ppu, u32 version, vm::cptr<char> dirName, u32 e
if (result->result != CELL_HDDGAME_CBRESULT_OK && result->result != CELL_HDDGAME_CBRESULT_OK_CANCEL)
{
return CELL_HDDGAME_ERROR_CBRESULT;
return (s32)CELL_HDDGAME_ERROR_CBRESULT;
}
// TODO ?
@ -186,7 +186,7 @@ s32 cellHddGameGetSizeKB(vm::ptr<u32> size)
if (!fs::is_dir(local_dir))
{
return CELL_HDDGAME_ERROR_FAILURE;
return (s32)CELL_HDDGAME_ERROR_FAILURE;
}
*size = ::narrow<u32>(fs::get_dir_size(local_dir) / 1024);

View File

@ -87,8 +87,8 @@ struct lv2_event_flag final : lv2_obj
}
// Check pattern
if ((mode & 0xf) == SYS_EVENT_FLAG_WAIT_AND && (pattern & bitptn) != bitptn ||
(mode & 0xf) == SYS_EVENT_FLAG_WAIT_OR && (pattern & bitptn) == 0)
if (((mode & 0xf) == SYS_EVENT_FLAG_WAIT_AND && (pattern & bitptn) != bitptn) ||
((mode & 0xf) == SYS_EVENT_FLAG_WAIT_OR && (pattern & bitptn) == 0))
{
return false;
}