mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-04-20 11:36:13 +00:00
Fixes for trigraph, unused and tautological warning.
This commit is contained in:
parent
582329ffc6
commit
e0d5cdd5e1
3 changed files with 10 additions and 10 deletions
|
@ -429,10 +429,10 @@ s32 cellRtcCheckValid(vm::ptr<CellRtcDateTime> pTime)
|
|||
if ((pTime->year < 1) || (pTime->year > 9999)) return CELL_RTC_ERROR_INVALID_YEAR;
|
||||
else if ((pTime->month < 1) || (pTime->month > 12)) return CELL_RTC_ERROR_INVALID_MONTH;
|
||||
else if ((pTime->day < 1) || (pTime->day > 31)) return CELL_RTC_ERROR_INVALID_DAY;
|
||||
else if ((pTime->hour < 0) || (pTime->hour > 23)) return CELL_RTC_ERROR_INVALID_HOUR;
|
||||
else if ((pTime->minute < 0) || (pTime->minute > 59)) return CELL_RTC_ERROR_INVALID_MINUTE;
|
||||
else if ((pTime->second < 0) || (pTime->second > 59)) return CELL_RTC_ERROR_INVALID_SECOND;
|
||||
else if ((pTime->microsecond < 0) || (pTime->microsecond > 999999)) return CELL_RTC_ERROR_INVALID_MICROSECOND;
|
||||
else if (pTime->hour > 23) return CELL_RTC_ERROR_INVALID_HOUR;
|
||||
else if (pTime->minute > 59) return CELL_RTC_ERROR_INVALID_MINUTE;
|
||||
else if (pTime->second > 59) return CELL_RTC_ERROR_INVALID_SECOND;
|
||||
else if (pTime->microsecond > 999999) return CELL_RTC_ERROR_INVALID_MICROSECOND;
|
||||
else return CELL_OK;
|
||||
}
|
||||
|
||||
|
|
|
@ -76,19 +76,19 @@ s32 cellVpostExec(u32 handle, vm::cptr<u8> inPicBuff, vm::cptr<CellVpostCtrlPara
|
|||
u32 ow = ctrlParam->outWidth;
|
||||
u32 oh = ctrlParam->outHeight;
|
||||
|
||||
ctrlParam->inWindow; // ignored
|
||||
//ctrlParam->inWindow; // ignored
|
||||
if (ctrlParam->inWindow.x) cellVpost.Notice("*** inWindow.x = %d", (u32)ctrlParam->inWindow.x);
|
||||
if (ctrlParam->inWindow.y) cellVpost.Notice("*** inWindow.y = %d", (u32)ctrlParam->inWindow.y);
|
||||
if (ctrlParam->inWindow.width != w) cellVpost.Notice("*** inWindow.width = %d", (u32)ctrlParam->inWindow.width);
|
||||
if (ctrlParam->inWindow.height != h) cellVpost.Notice("*** inWindow.height = %d", (u32)ctrlParam->inWindow.height);
|
||||
ctrlParam->outWindow; // ignored
|
||||
//ctrlParam->outWindow; // ignored
|
||||
if (ctrlParam->outWindow.x) cellVpost.Notice("*** outWindow.x = %d", (u32)ctrlParam->outWindow.x);
|
||||
if (ctrlParam->outWindow.y) cellVpost.Notice("*** outWindow.y = %d", (u32)ctrlParam->outWindow.y);
|
||||
if (ctrlParam->outWindow.width != ow) cellVpost.Notice("*** outWindow.width = %d", (u32)ctrlParam->outWindow.width);
|
||||
if (ctrlParam->outWindow.height != oh) cellVpost.Notice("*** outWindow.height = %d", (u32)ctrlParam->outWindow.height);
|
||||
ctrlParam->execType; // ignored
|
||||
ctrlParam->scalerType; // ignored
|
||||
ctrlParam->ipcType; // ignored
|
||||
//ctrlParam->execType; // ignored
|
||||
//ctrlParam->scalerType; // ignored
|
||||
//ctrlParam->ipcType; // ignored
|
||||
|
||||
picInfo->inWidth = w; // copy
|
||||
picInfo->inHeight = h; // copy
|
||||
|
|
|
@ -9,7 +9,7 @@ std::unique_ptr<SceNpSnsInternal> g_sceNpSns;
|
|||
|
||||
s32 sceNpSnsFbInit(/*const SceNpSnsFbInitParams params*/)
|
||||
{
|
||||
sceNpSns.Todo("sceNpSnsFbInit(params=???)"/*, params*/);
|
||||
sceNpSns.Todo("sceNpSnsFbInit(params=?)"/*, params*/);
|
||||
|
||||
if (g_sceNpSns->m_bSceNpSnsInitialized)
|
||||
{
|
||||
|
|
Loading…
Add table
Reference in a new issue