Fix coding convention

This commit is contained in:
ubkp 2023-12-10 17:20:51 -03:00
parent ce77365788
commit d262e90945

View File

@ -211,10 +211,10 @@ void ToggleFullscreen(void)
// Toggle borderless windowed mode
void ToggleBorderlessWindowed(void)
{
const bool wasFullscreen = EM_ASM_INT( { if ( document.fullscreenElement ) return 1; }, 0);
const bool wasFullscreen = EM_ASM_INT( { if (document.fullscreenElement) return 1; }, 0);
if (wasFullscreen)
{
EM_ASM( document.exitFullscreen(); );
EM_ASM(document.exitFullscreen(););
CORE.Window.fullscreen = false;
CORE.Window.flags &= ~FLAG_FULLSCREEN_MODE;