aboutsummaryrefslogtreecommitdiff
path: root/engines/cge/config.cpp
diff options
context:
space:
mode:
authorPaul Gilbert2011-07-03 14:55:49 +1000
committerPaul Gilbert2011-07-03 14:55:49 +1000
commit156c2d020fca74bb901e547a04ae2a9e2f8ec8cc (patch)
treeae65c0ea66d9e153e8ab798353e6e271fdb27384 /engines/cge/config.cpp
parent334de9626ae6e6e5cd66582993fe799b329a0a50 (diff)
downloadscummvm-rg350-156c2d020fca74bb901e547a04ae2a9e2f8ec8cc.tar.gz
scummvm-rg350-156c2d020fca74bb901e547a04ae2a9e2f8ec8cc.tar.bz2
scummvm-rg350-156c2d020fca74bb901e547a04ae2a9e2f8ec8cc.zip
CGE: Fix GCC compiler warnings
Diffstat (limited to 'engines/cge/config.cpp')
-rw-r--r--engines/cge/config.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/cge/config.cpp b/engines/cge/config.cpp
index 4f5284b69b..9a8219dd6b 100644
--- a/engines/cge/config.cpp
+++ b/engines/cge/config.cpp
@@ -148,7 +148,7 @@ void CGEEngine::selectSound() {
SNPOST_(SNKILL, -1, 0, VMENU::Addr);
inf(Text->getText(STYPE_TEXT));
Talk->gotoxy(Talk->_x, FONT_HIG / 2);
- for (i = 0; i < ArrayCount(DevName); i++)
+ for (i = 0; i < (int)ArrayCount(DevName); i++)
DevMenu[i].Text = Text->getText(DevName[i]);
(new VMENU(this, DevMenu, SCR_WID / 2, Talk->_y + Talk->_h + TEXT_VM + FONT_HIG))->setName(Text->getText(MENU_TEXT));
}