aboutsummaryrefslogtreecommitdiff
path: root/saga/interface.cpp
diff options
context:
space:
mode:
authorTorbjörn Andersson2005-04-22 15:26:50 +0000
committerTorbjörn Andersson2005-04-22 15:26:50 +0000
commit2ea2b51ed54e006dea55d7b55ebab1b6ce1ad052 (patch)
treecc9e06a0245bdd105a44378a97c6c8c54243adc1 /saga/interface.cpp
parentcdede6caa485c8ea6f1868b1723a52d77b544c1e (diff)
downloadscummvm-rg350-2ea2b51ed54e006dea55d7b55ebab1b6ce1ad052.tar.gz
scummvm-rg350-2ea2b51ed54e006dea55d7b55ebab1b6ce1ad052.tar.bz2
scummvm-rg350-2ea2b51ed54e006dea55d7b55ebab1b6ce1ad052.zip
Changed "BYTE" to "int".
svn-id: r17749
Diffstat (limited to 'saga/interface.cpp')
-rw-r--r--saga/interface.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/saga/interface.cpp b/saga/interface.cpp
index 7b28260adb..08b54e37a1 100644
--- a/saga/interface.cpp
+++ b/saga/interface.cpp
@@ -614,7 +614,7 @@ void Interface::inventorySetPos(int key) {
}
void Interface::updateInventory(int pos) {
- BYTE cols = _vm->getDisplayInfo().inventoryColumns;
+ int cols = _vm->getDisplayInfo().inventoryColumns;
if (pos >= _inventoryCount) {
pos = _inventoryCount - 1;
}