WII: Fix compiler warnings

WII: Fix compiler warnings

Compiler: DevKitPPC R28
This commit is contained in:
Alexander Reim 2017-02-14 11:38:39 +01:00
parent 8747e59c03
commit 6dd28d7cc1
4 changed files with 9 additions and 7 deletions

View file

@ -229,21 +229,21 @@ void OSystem_Wii::lockMutex(MutexRef mutex) {
s32 res = LWP_MutexLock(*(mutex_t *)mutex); s32 res = LWP_MutexLock(*(mutex_t *)mutex);
if (res) if (res)
printf("ERROR locking mutex %p (%d)\n", mutex, res); printf("ERROR locking mutex %p (%ld)\n", mutex, res);
} }
void OSystem_Wii::unlockMutex(MutexRef mutex) { void OSystem_Wii::unlockMutex(MutexRef mutex) {
s32 res = LWP_MutexUnlock(*(mutex_t *)mutex); s32 res = LWP_MutexUnlock(*(mutex_t *)mutex);
if (res) if (res)
printf("ERROR unlocking mutex %p (%d)\n", mutex, res); printf("ERROR unlocking mutex %p (%ld)\n", mutex, res);
} }
void OSystem_Wii::deleteMutex(MutexRef mutex) { void OSystem_Wii::deleteMutex(MutexRef mutex) {
s32 res = LWP_MutexDestroy(*(mutex_t *)mutex); s32 res = LWP_MutexDestroy(*(mutex_t *)mutex);
if (res) if (res)
printf("ERROR destroying mutex %p (%d)\n", mutex, res); printf("ERROR destroying mutex %p (%ld)\n", mutex, res);
free(mutex); free(mutex);
} }

View file

@ -172,7 +172,7 @@ void OSystem_Wii::initEvents() {
TIMER_THREAD_PRIO); TIMER_THREAD_PRIO);
if (res) { if (res) {
printf("ERROR creating timer thread: %d\n", res); printf("ERROR creating timer thread: %ld\n", res);
LWP_CloseQueue(timer_queue); LWP_CloseQueue(timer_queue);
} }
@ -227,7 +227,9 @@ bool OSystem_Wii::pollKeyboard(Common::Event &event) {
int i; int i;
keyboard_event kbdEvent; keyboard_event kbdEvent;
if (!KEYBOARD_GetEvent(&kbdEvent) > 0) s32 res = KEYBOARD_GetEvent(&kbdEvent);
if (!res)
return false; return false;
switch (kbdEvent.type) { switch (kbdEvent.type) {

View file

@ -713,7 +713,7 @@ void OSystem_Wii::setMouseCursor(const void *buf, uint w, uint h, int hotspotX,
} }
// nasty, shouldn't the frontend set the alpha channel? // nasty, shouldn't the frontend set the alpha channel?
u16 *s = (u16 *) buf; const u16 *s = (const u16 *) buf;
u16 *d = (u16 *) tmp; u16 *d = (u16 *) tmp;
for (u16 y = 0; y < h; ++y) { for (u16 y = 0; y < h; ++y) {
for (u16 x = 0; x < w; ++x) { for (u16 x = 0; x < w; ++x) {

View file

@ -87,7 +87,7 @@ void OSystem_Wii::initSfx() {
SFX_THREAD_STACKSIZE, SFX_THREAD_PRIO); SFX_THREAD_STACKSIZE, SFX_THREAD_PRIO);
if (res) { if (res) {
printf("ERROR creating sfx thread: %d\n", res); printf("ERROR creating sfx thread: %ld\n", res);
LWP_CloseQueue(sfx_queue); LWP_CloseQueue(sfx_queue);
return; return;
} }