3DS: Fix warning

This commit is contained in:
Vicki Pfau 2020-06-01 21:12:44 -07:00
parent 57ad735280
commit 39c6bb2de6
1 changed files with 1 additions and 1 deletions

View File

@ -122,7 +122,7 @@ static bool _initGpu(void) {
return false;
}
if (!C3D_TexInitVRAM(&upscaleBufferTex, 512, 512, GPU_RB_RGB8)) {
if (!C3D_TexInitVRAM(&upscaleBufferTex, 512, 512, GPU_RGB8)) {
return false;
}
upscaleBuffer = C3D_RenderTargetCreateFromTex(&upscaleBufferTex, GPU_TEXFACE_2D, 0, 0);