Avoid some dangerous hex constant widths.

This commit is contained in:
Unknown W. Brackets
2013-08-22 23:23:48 -07:00
parent 083fa71c1a
commit 1ed8edb0d3
20 changed files with 82 additions and 82 deletions
+1 -1
View File
@@ -964,7 +964,7 @@ bool __KernelLoadExec(const char *filename, u32 paramPtr, std::string *error_str
u32 handle = pspFileSystem.OpenFile(filename, FILEACCESS_READ);
u8 *temp = new u8[(int)info.size + 0x1000000];
u8 *temp = new u8[(int)info.size + 0x01000000];
pspFileSystem.ReadFile(handle, temp, (size_t)info.size);