mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 06:09:50 -06:00
Removed more compiler warnings in linux.
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@5170 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
@ -69,7 +69,7 @@ public:
|
||||
private:
|
||||
size_t CalculateHash() {
|
||||
size_t h = -1;
|
||||
for (int i = 0; i < sizeof(vid) / sizeof(vid[0]); ++i) {
|
||||
for (unsigned int i = 0; i < sizeof(vid) / sizeof(vid[0]); ++i) {
|
||||
h = h * 137 + vid[i];
|
||||
}
|
||||
return h;
|
||||
|
Reference in New Issue
Block a user