diff --git a/CHANGES b/CHANGES index da8c20954..3bc42b67b 100644 --- a/CHANGES +++ b/CHANGES @@ -13,6 +13,7 @@ Emulation fixes: - GBA Video: Fix color of disabled screen - SM83: Fix flags on little endian PowerPC Other fixes: + - 3DS: Fix garbage on borders of scaled screens - All: Correct format strings for some numbers on Windows (fixes mgba.io/i/1794) - All: Correct more format strings on Windows (fixes mgba.io/i/1817) - ARM: Fix decoder detection of branches with ALU and LDR instrctions diff --git a/src/platform/3ds/main.c b/src/platform/3ds/main.c index 2f26c49d1..52779bfc2 100644 --- a/src/platform/3ds/main.c +++ b/src/platform/3ds/main.c @@ -852,6 +852,7 @@ int main() { return 1; } + C3D_TexSetWrap(&upscaleBufferTex, GPU_CLAMP_TO_EDGE, GPU_CLAMP_TO_EDGE); C3D_TexSetFilter(&upscaleBufferTex, GPU_LINEAR, GPU_LINEAR); int i;