mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-04-06 15:05:59 +00:00
Silly macro removed-3
This commit is contained in:
parent
dbcb5df172
commit
3c82e1a58d
7 changed files with 44 additions and 46 deletions
|
|
@ -183,8 +183,8 @@ ppu_error_code cellVideoOutGetNumberOfDevice(u32 videoOut)
|
|||
|
||||
switch (videoOut)
|
||||
{
|
||||
case CELL_VIDEO_OUT_PRIMARY: return NOT_AN_ERROR(1);
|
||||
case CELL_VIDEO_OUT_SECONDARY: return NOT_AN_ERROR(0);
|
||||
case CELL_VIDEO_OUT_PRIMARY: return not_an_error(1);
|
||||
case CELL_VIDEO_OUT_SECONDARY: return not_an_error(0);
|
||||
}
|
||||
|
||||
return CELL_VIDEO_OUT_ERROR_UNSUPPORTED_VIDEO_OUT;
|
||||
|
|
@ -196,8 +196,8 @@ ppu_error_code cellVideoOutGetResolutionAvailability(u32 videoOut, u32 resolutio
|
|||
|
||||
switch (videoOut)
|
||||
{
|
||||
case CELL_VIDEO_OUT_PRIMARY: return NOT_AN_ERROR(1);
|
||||
case CELL_VIDEO_OUT_SECONDARY: return NOT_AN_ERROR(0);
|
||||
case CELL_VIDEO_OUT_PRIMARY: return not_an_error(1);
|
||||
case CELL_VIDEO_OUT_SECONDARY: return not_an_error(0);
|
||||
}
|
||||
|
||||
return CELL_VIDEO_OUT_ERROR_UNSUPPORTED_VIDEO_OUT;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue