Fix some warnings.

This commit is contained in:
Unknown W. Brackets
2013-08-13 21:05:54 -07:00
parent 65d4601140
commit 8ab67b1674
4 changed files with 7 additions and 7 deletions

View File

@@ -268,7 +268,7 @@ int VirtualDiscFileSystem::getFileListIndex(std::string& fileName)
fileList.push_back(entry);
return fileList.size()-1;
return (int)fileList.size()-1;
}
int VirtualDiscFileSystem::getFileListIndex(u32 accessBlock, u32 accessSize, bool blockMode)