3DS: Fix garbage on borders of scaled screens

This commit is contained in:
Vicki Pfau 2020-07-31 22:21:33 -07:00
parent 21a23b3a7a
commit 580aec949c
2 changed files with 2 additions and 0 deletions

View File

@ -34,6 +34,7 @@ Emulation fixes:
- SM83: Emulate HALT bug
- SM83: Fix flags on little endian PowerPC
Other fixes:
- 3DS: Fix garbage on borders of scaled screens
- All: Improve export headers (fixes mgba.io/i/1738)
- 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)

View File

@ -859,6 +859,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;