BACKEND: no need add return for residualvm

This commit is contained in:
Paweł Kołodziejski 2012-03-25 07:31:28 +02:00
parent c32458a389
commit 5e86a8d5a8

View file

@ -35,7 +35,6 @@
void BaseBackend::displayMessageOnOSD(const char *msg) {
// Display the message for 1.5 seconds
return;// ResidualVM: OSD not iplemented
GUI::TimedMessageDialog dialog(msg, 1500);
dialog.runModal();
}
@ -57,7 +56,6 @@ void BaseBackend::initBackend() {
}
void BaseBackend::fillScreen(uint32 col) {
return;// ResidualVM: not used
Graphics::Surface *screen = lockScreen();
if (screen && screen->pixels)
memset(screen->pixels, col, screen->h * screen->pitch);