diff options
author | peter1138 <peter1138@openttd.org> | 2008-01-14 11:18:43 +0000 |
---|---|---|
committer | peter1138 <peter1138@openttd.org> | 2008-01-14 11:18:43 +0000 |
commit | 027112e1fe08eb3cbc240cacba21c1c3a3350731 (patch) | |
tree | a28970e13ba13c349ac82e05808ec31b24a3f91c | |
parent | bfc4d80c8e548c5bb1f4b3b527498b3dfe840ff9 (diff) | |
download | openttd-027112e1fe08eb3cbc240cacba21c1c3a3350731.tar.xz |
(svn r11846) -Fix [FS#1651]: implicit conversion from unsigned to signed int caused compilation failure with MSVC.
-rw-r--r-- | src/newgrf.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/newgrf.cpp b/src/newgrf.cpp index f6c532cf2..435a96e0f 100644 --- a/src/newgrf.cpp +++ b/src/newgrf.cpp @@ -2348,7 +2348,7 @@ static void NewSpriteSet(byte *buf, int len) _cur_spriteid, feature, num_sets, num_ents, num_sets * num_ents ); - for (uint i = 0; i < num_sets * num_ents; i++) { + for (int i = 0; i < num_sets * num_ents; i++) { _nfo_line++; LoadNextSprite(_cur_spriteid++, _file_index, _nfo_line); } |