From a93fad51857e85e4b2c8f4a37f95f4acd3ba2b3d Mon Sep 17 00:00:00 2001 From: Zack Buhman Date: Fri, 4 Jul 2025 22:21:44 -0500 Subject: [PATCH] disable dither --- src/graphics.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/graphics.cpp b/src/graphics.cpp index 882932d..8acaf91 100644 --- a/src/graphics.cpp +++ b/src/graphics.cpp @@ -76,11 +76,13 @@ void graphics_interrupt(uint32_t istnrm) system.ISTNRM = istnrm::end_of_transferring_translucent_list; core_in_use = 1; + int dither = false; core_start_render2(texture_memory_alloc.region_array.start, texture_memory_alloc.isp_tsp_parameters.start, texture_memory_alloc.background[1].start, texture_memory_alloc.framebuffer[framebuffer_ix].start, - framebuffer.px_width); + framebuffer.px_width, + false); ta_in_use = 0; }