mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-22 18:02:05 +00:00
TWINE: disabled partial screen blitting for now
This commit is contained in:
parent
38cd5622b3
commit
dffaa2956d
@ -819,9 +819,13 @@ void TwinEEngine::flip() {
|
||||
void TwinEEngine::copyBlockPhys(int32 left, int32 top, int32 right, int32 bottom) {
|
||||
assert(left < right);
|
||||
assert(top < bottom);
|
||||
#if 0
|
||||
// TODO: fix this - looks like the palette includes a color key at pos 0
|
||||
g_system->copyRectToScreen(frontVideoBuffer.getPixels(), frontVideoBuffer.pitch, left, top, right - left + 1, bottom - top + 1);
|
||||
g_system->updateScreen();
|
||||
#else
|
||||
flip();
|
||||
#endif
|
||||
}
|
||||
|
||||
void TwinEEngine::crossFade(const Graphics::ManagedSurface &buffer, const uint32 *palette) {
|
||||
|
Loading…
Reference in New Issue
Block a user