Move SHR to Analog GS firmware

Even with overclocking SHR pushes the limits of the RP2040 if it has to bit-shift the 12-bit RGB to 9-bit RGB.  May investigate using the hardware math acceleration to re-enable this at a later time.
This commit is contained in:
David Kuder 2023-05-02 16:16:09 -04:00
parent 073a139514
commit 594af38236
1 changed files with 1 additions and 1 deletions

View File

@ -208,7 +208,7 @@ void DELAYED_COPY_CODE(render_loop)() {
testdone = 1;
render_about_init();
}
#if defined(ANALOG_GS) || defined(OVERCLOCKED)
#if defined(ANALOG_GS)
} else if(soft_switches & SOFTSW_SHR) {
vga_prepare_frame();
render_shr();