The mono palette hack isn't needed for SheepShaver.

This commit is contained in:
Adam Sampson 2020-08-23 16:47:48 +01:00
parent 29bb3d5a5a
commit 4da2082c07
1 changed files with 2 additions and 0 deletions

View File

@ -991,6 +991,7 @@ void driver_base::set_video_mode(int flags)
void driver_base::init()
{
set_video_mode(display_type == DISPLAY_SCREEN ? SDL_WINDOW_FULLSCREEN : 0);
#ifndef SHEEPSHAVER
// manually set palette for 24bit ROM
// 24 bit ROM Macintosh is BW screen. It doesn't setup palette by the ROM.
if (TwentyFourBitAddressing && !sdl_palette) {
@ -1003,6 +1004,7 @@ void driver_base::init()
}
update_palette();
}
#endif
int aligned_height = (VIDEO_MODE_Y + 15) & ~15;