mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-19 08:06:42 +00:00
CGE: Get rid of casts on OSystem::copyRectToScreen calls.
This commit is contained in:
parent
31880186e1
commit
d4a5615a8b
@ -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();
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user