diff options
author | Andrei Karas <akaras@inbox.ru> | 2017-08-03 03:20:07 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2017-08-03 03:20:07 +0300 |
commit | 4546f29469d01fcbb5a030c4cf1746b786b495da (patch) | |
tree | 1c993be9c3c4cbde0c48fda8c2ee0d07a9863e3b /src/dyetool | |
parent | a06b27bdd35ee48a1e26aa3be53af6d1063a5d4c (diff) | |
download | ManaVerse-4546f29469d01fcbb5a030c4cf1746b786b495da.tar.gz ManaVerse-4546f29469d01fcbb5a030c4cf1746b786b495da.tar.bz2 ManaVerse-4546f29469d01fcbb5a030c4cf1746b786b495da.tar.xz ManaVerse-4546f29469d01fcbb5a030c4cf1746b786b495da.zip |
Fix signed / unsigned comparision issue in old gcc.
Diffstat (limited to 'src/dyetool')
-rw-r--r-- | src/dyetool/client.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dyetool/client.cpp b/src/dyetool/client.cpp index 8ed409a0a..05a5d365a 100644 --- a/src/dyetool/client.cpp +++ b/src/dyetool/client.cpp @@ -307,7 +307,7 @@ void Client::gameInit() touchManager.init(); // Initialize the item and emote shortcuts. -// for (unsigned f = 0; f < SHORTCUT_TABS; f ++) +// for (size_t f = 0; f < SHORTCUT_TABS; f ++) // itemShortcut[f] = new ItemShortcut(f); // emoteShortcut = new EmoteShortcut; // dropShortcut = new DropShortcut; |