From 3aa30d7d89494fa160aef44b9994b3fadfe18fda Mon Sep 17 00:00:00 2001 From: Floogle <18466542+skyfloogle@users.noreply.github.com> Date: Wed, 27 Mar 2024 23:22:29 +0100 Subject: [PATCH] forgot tu turn one more 0x80 into a 0x7f --- source/3ds/video_hard.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/3ds/video_hard.c b/source/3ds/video_hard.c index 39cc182..c4457d7 100644 --- a/source/3ds/video_hard.c +++ b/source/3ds/video_hard.c @@ -156,7 +156,7 @@ void video_hard_init() { static void setRegularTexEnv() { C3D_TexEnv *env = C3D_GetTexEnv(0); C3D_TexEnvInit(env); - C3D_TexEnvColor(env, 0x808080); + C3D_TexEnvColor(env, 0x7f7f7f); C3D_TexEnvSrc(env, C3D_Both, GPU_TEXTURE0, GPU_CONSTANT, 0); C3D_TexEnvFunc(env, C3D_RGB, GPU_ADD);