3DS: Try to fix on-screen keyboard not showing when 3D anaglyph is enabled

This commit is contained in:
UnknownShadow200 2025-01-05 18:07:14 +11:00
parent be2c4be4a0
commit 1055c7b5be

View file

@ -708,6 +708,10 @@ static CC_INLINE void Game_DrawFrame(float delta, float t) {
Gfx_SetTopRight();
Gui_RenderGui(delta);
}
for (i = 0; i < Array_Elems(Game.Draw2DHooks); i++)
{
if (Game.Draw2DHooks[i]) Game.Draw2DHooks[i](delta);
}
#endif
Gfx_End2D();
}