[Scummvm-cvs-logs] CVS: scummvm/queen display.cpp,1.59,1.60
Max Horn
fingolfin at users.sourceforge.net
Sat Feb 28 05:17:14 CET 2004
- Previous message: [Scummvm-cvs-logs] CVS: scummvm/scumm debugger.cpp,1.121,1.122 gfx.cpp,2.268,2.269 imuse.cpp,2.115,2.116 palette.cpp,2.4,2.5 player_v2.cpp,2.47,2.48 player_v2.h,2.27,2.28 scummvm.cpp,2.592,2.593
- Next message: [Scummvm-cvs-logs] CVS: scummvm/scumm/imuse_digi dimuse.cpp,1.48,1.49
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
Update of /cvsroot/scummvm/scummvm/queen
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv32588/queen
Modified Files:
display.cpp
Log Message:
renamed more OSystem methods to follow our naming scheme; renamed NewGuiColor to OverlayColor; fixed some calls to error() in the SDL backend
Index: display.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/queen/display.cpp,v
retrieving revision 1.59
retrieving revision 1.60
diff -u -d -r1.59 -r1.60
--- display.cpp 21 Feb 2004 08:52:25 -0000 1.59
+++ display.cpp 28 Feb 2004 12:58:09 -0000 1.60
@@ -156,9 +156,9 @@
debug(9, "Display::palSet(%d, %d)", start, end);
uint8 tempPal[256 * 4];
palConvert(tempPal, pal, start, end);
- _system->set_palette(tempPal + start * 4, start, end - start + 1);
+ _system->setPalette(tempPal + start * 4, start, end - start + 1);
if (updateScreen) {
- _system->update_screen();
+ _system->updateScreen();
_vm->input()->delay(20);
}
}
@@ -617,7 +617,7 @@
}
debug(7, "Display::update() - Dirtyblocks blit (%d)", count);
}
- _system->update_screen();
+ _system->updateScreen();
}
void Display::setupPanel() {
@@ -958,7 +958,7 @@
++y;
}
_system->copy_rect(buf, 32, x, y, 32, 32);
- _system->update_screen();
+ _system->updateScreen();
_vm->input()->delay(10);
}
}
@@ -991,7 +991,7 @@
p += SCREEN_W;
}
_system->copy_rect(buf, SCREEN_W, x, y, 2, 2);
- _system->update_screen();
+ _system->updateScreen();
_vm->input()->delay(10);
}
}
@@ -1020,7 +1020,7 @@
++i;
_system->copy_rect(buf, SCREEN_W, x, y, 2, 2);
}
- _system->update_screen();
+ _system->updateScreen();
_vm->input()->delay(10);
}
}
- Previous message: [Scummvm-cvs-logs] CVS: scummvm/scumm debugger.cpp,1.121,1.122 gfx.cpp,2.268,2.269 imuse.cpp,2.115,2.116 palette.cpp,2.4,2.5 player_v2.cpp,2.47,2.48 player_v2.h,2.27,2.28 scummvm.cpp,2.592,2.593
- Next message: [Scummvm-cvs-logs] CVS: scummvm/scumm/imuse_digi dimuse.cpp,1.48,1.49
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
More information about the Scummvm-git-logs
mailing list