mirror of
https://github.com/libretro/scummvm.git
synced 2025-04-03 07:11:49 +00:00
SCI: adding force to memorial area for SQ3/intro
makes the view getting fully undithered svn-id: r54068
This commit is contained in:
parent
92841e9832
commit
bb716c23fa
@ -754,6 +754,15 @@ void GfxPicture::drawVectorData(byte *data, int dataSize) {
|
||||
// Dithering EGA pictures
|
||||
if (isEGA) {
|
||||
_screen->dither(_addToFlag);
|
||||
switch (g_sci->getGameId()) {
|
||||
case GID_SQ3:
|
||||
switch (_resourceId) {
|
||||
case 154: // SQ3: intro, ship gets sucked in
|
||||
_screen->ditherForceMemorial(0xD0);
|
||||
break;
|
||||
}
|
||||
break;
|
||||
}
|
||||
}
|
||||
return;
|
||||
default:
|
||||
|
@ -616,6 +616,11 @@ void GfxScreen::dither(bool addToFlag) {
|
||||
}
|
||||
}
|
||||
|
||||
// Force a color combination into memorial
|
||||
void GfxScreen::ditherForceMemorial(byte color) {
|
||||
_unditherMemorial[color] = 256;
|
||||
}
|
||||
|
||||
void GfxScreen::debugUnditherSetState(bool flag) {
|
||||
_unditherState = flag;
|
||||
}
|
||||
|
@ -115,6 +115,7 @@ public:
|
||||
void adjustBackUpscaledCoordinates(int16 &y, int16 &x);
|
||||
|
||||
void dither(bool addToFlag);
|
||||
void ditherForceMemorial(byte color);
|
||||
void debugUnditherSetState(bool flag);
|
||||
int16 *unditherGetMemorial();
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user