CGE: Get rid of casts on OSystem::copyRectToScreen calls.

This commit is contained in:
Johannes Schickel 2012-06-16 02:32:42 +02:00
parent 31880186e1
commit d4a5615a8b

View File

@ -834,7 +834,7 @@ void Vga::update() {
}
}
g_system->copyRectToScreen((const byte *)Vga::_page[0]->getBasePtr(0, 0), kScrWidth, 0, 0, kScrWidth, kScrHeight);
g_system->copyRectToScreen(Vga::_page[0]->getBasePtr(0, 0), kScrWidth, 0, 0, kScrWidth, kScrHeight);
g_system->updateScreen();
}