(svn r21228) -Fix: some MSVC 64 bits warnings

This commit is contained in:
rubidium
2010-11-17 19:43:15 +00:00
parent 4e16467f5b
commit 19cbf9b479
2 changed files with 10 additions and 10 deletions

View File

@@ -317,7 +317,7 @@ struct GameOptionsWindow : Window {
/* Sort language names */
LangList langs;
int current_lang = 0;
for (size_t i = 0; i < _languages.Length(); i++) {
for (int i = 0; i < (int)_languages.Length(); i++) {
if (&_languages[i] == _current_language) current_lang = i;
langs[SPECSTR_LANGUAGE_START + i] = i;
}