aboutsummaryrefslogtreecommitdiff
path: root/sword1/screen.cpp
diff options
context:
space:
mode:
authorJonathan Gray2003-12-16 09:43:08 +0000
committerJonathan Gray2003-12-16 09:43:08 +0000
commit83e9c59327d695b4bf2e0d8ae6661b25042ff750 (patch)
tree321f416f99654f03f69a4185996dbb29b9e8ac84 /sword1/screen.cpp
parent9673833d97135fd9b5af5f3457f11babcba59d72 (diff)
downloadscummvm-rg350-83e9c59327d695b4bf2e0d8ae6661b25042ff750.tar.gz
scummvm-rg350-83e9c59327d695b4bf2e0d8ae6661b25042ff750.tar.bz2
scummvm-rg350-83e9c59327d695b4bf2e0d8ae6661b25042ff750.zip
compilation fixes
svn-id: r11679
Diffstat (limited to 'sword1/screen.cpp')
-rw-r--r--sword1/screen.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/sword1/screen.cpp b/sword1/screen.cpp
index cfacea2c82..a4b4e3bfde 100644
--- a/sword1/screen.cpp
+++ b/sword1/screen.cpp
@@ -271,7 +271,7 @@ void SwordScreen::newScreen(uint32 screen) {
// TEMPORARY!
uint8 *bgPal = (uint8*)_resMan->openFetchRes(_roomDefTable[_currentScreen].palettes[0]);
- uint8 *sprPal = (uint8*)_resMan->openFetchRes(_roomDefTable[_currentScreen].palettes[1]);
+ // uint8 *sprPal = (uint8*)_resMan->openFetchRes(_roomDefTable[_currentScreen].palettes[1]);
for (uint16 cnt = 0; cnt < 256; cnt++) {
_targetPalette[cnt * 4 + 0] = bgPal[cnt * 3 + 0] << 2;
_targetPalette[cnt * 4 + 1] = bgPal[cnt * 3 + 1] << 2;