From 0d6a02168bfc87878e32f13d5d475e9884ba38b6 Mon Sep 17 00:00:00 2001 From: byuu <2107894+byuu@users.noreply.github.com> Date: Mon, 2 Dec 2019 19:28:48 +0900 Subject: [PATCH] v106.231 SFC: disable math color bleed for first pixel (fixes green line on the left-edge of Jurassic Park) SFC/GG: attach Screen settings to Screen node, not PPU/VDP node (fixes remembering Screen settings) --- aarch64.c | 4 +--- amd64.c | 4 +--- arm.c | 4 +--- x86.c | 4 +--- 4 files changed, 4 insertions(+), 12 deletions(-) diff --git a/aarch64.c b/aarch64.c index 904f688f..b3ffcc49 100644 --- a/aarch64.c +++ b/aarch64.c @@ -6,9 +6,7 @@ #include #include #include -#ifdef LIBCO_MPROTECT - #include -#endif +#include #ifdef __cplusplus extern "C" { diff --git a/amd64.c b/amd64.c index 45f3f6d8..e9424c0b 100644 --- a/amd64.c +++ b/amd64.c @@ -99,9 +99,7 @@ static void (*co_swap)(cothread_t, cothread_t) = 0; }; #include - #ifdef LIBCO_MPROTECT - #include - #endif + #include static void co_init() { #ifdef LIBCO_MPROTECT diff --git a/arm.c b/arm.c index 0ebf2e7a..95adf6b2 100644 --- a/arm.c +++ b/arm.c @@ -5,9 +5,7 @@ #include #include #include -#ifdef LIBCO_MPROTECT - #include -#endif +#include #ifdef __cplusplus extern "C" { diff --git a/x86.c b/x86.c index 8b339ee7..fa1c538f 100644 --- a/x86.c +++ b/x86.c @@ -53,9 +53,7 @@ static const unsigned char co_swap_function[4096] = { } #else #include - #ifdef LIBCO_MPROTECT - #include - #endif + #include static void co_init() { #ifdef LIBCO_MPROTECT