mirror of
https://github.com/ClassiCube/ClassiCube.git
synced 2025-01-22 09:01:57 -05:00
3DS: Try to fix on-screen keyboard not showing when 3D anaglyph is enabled
This commit is contained in:
parent
be2c4be4a0
commit
1055c7b5be
1 changed files with 4 additions and 0 deletions
|
@ -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();
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue