diff options
author | Torbjörn Andersson | 2005-04-22 15:26:50 +0000 |
---|---|---|
committer | Torbjörn Andersson | 2005-04-22 15:26:50 +0000 |
commit | 2ea2b51ed54e006dea55d7b55ebab1b6ce1ad052 (patch) | |
tree | cc9e06a0245bdd105a44378a97c6c8c54243adc1 | |
parent | cdede6caa485c8ea6f1868b1723a52d77b544c1e (diff) | |
download | scummvm-rg350-2ea2b51ed54e006dea55d7b55ebab1b6ce1ad052.tar.gz scummvm-rg350-2ea2b51ed54e006dea55d7b55ebab1b6ce1ad052.tar.bz2 scummvm-rg350-2ea2b51ed54e006dea55d7b55ebab1b6ce1ad052.zip |
Changed "BYTE" to "int".
svn-id: r17749
-rw-r--r-- | saga/interface.cpp | 2 |
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; } |