Fix some printf size warnings, signed warnings.

This commit is contained in:
Unknown W. Brackets 2013-03-02 13:50:38 -08:00
parent e87276cbad
commit a3f93ed203
8 changed files with 17 additions and 16 deletions

View file

@ -270,7 +270,7 @@ u32 sceIoAssign(u32 alias_addr, u32 physical_addr, u32 filesystem_addr, int mode
perm = "IOASSIGN_RDONLY";
break;
default:
perm = "unhandled " + mode;
perm = "unhandled";
break;
}
DEBUG_LOG(HLE, "sceIoAssign(%s, %s, %s, %s, %08x, %i)", alias.c_str(), physical_dev.c_str(), filesystem_dev.c_str(), perm.c_str(), arg_addr, argSize);