From 6990abc0d3a333101da1abc4eb892ecf1e03e7c2 Mon Sep 17 00:00:00 2001 From: Thomas Harte Date: Mon, 18 Nov 2019 22:56:40 -0500 Subject: [PATCH] Tweaks selected output mode when both BPP bits are set. --- Machines/Atari/ST/Video.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Machines/Atari/ST/Video.cpp b/Machines/Atari/ST/Video.cpp index cc659b6bc..8a1b0d6ca 100644 --- a/Machines/Atari/ST/Video.cpp +++ b/Machines/Atari/ST/Video.cpp @@ -391,11 +391,11 @@ void Video::write(int address, uint16_t value) { void Video::update_output_mode() { // If this is black and white mode, that's that. switch((video_mode_ >> 8) & 3) { - default: case 0: output_bpp_ = OutputBpp::Four; break; case 1: output_bpp_ = OutputBpp::Two; break; // 1bpp mode ignores the otherwise-programmed frequency. + default: case 2: output_bpp_ = OutputBpp::One; field_frequency_ = FieldFrequency::SeventyTwo;