fixed some code warnings

This commit is contained in:
ShizZy 2013-09-08 21:55:37 -04:00
parent c2867f7e14
commit 4f5d397379
2 changed files with 2 additions and 2 deletions

View File

@ -37,7 +37,7 @@
/// Application entry point
int __cdecl main(int argc, char **argv) {
u32 tight_loop;
//u32 tight_loop;
printf("akiru starting...\n");

View File

@ -781,7 +781,7 @@ bool ReadFileToString(bool text_file, const char *filename, std::string &str)
if (!f)
return false;
str.resize(GetSize(f));
str.resize(static_cast<u32>(GetSize(f)));
return file.ReadArray(&str[0], str.size());
}