瀏覽代碼

Corrected typo

pull/5111/head
Ray 2 月之前
父節點
當前提交
76284f1a16
共有 1 個檔案被更改,包括 2 行新增2 行删除
  1. +2
    -2
      src/platforms/rcore_desktop_glfw.c

+ 2
- 2
src/platforms/rcore_desktop_glfw.c 查看文件

@ -1364,7 +1364,7 @@ int InitPlatform(void)
glfwWindowHint(GLFW_AUTO_ICONIFY, 0); glfwWindowHint(GLFW_AUTO_ICONIFY, 0);
// Window flags requested before initialization to be applied after initialization // Window flags requested before initialization to be applied after initialization
unsigned int requetedWindowFlags = CORE.Window.flags;
unsigned int requestedWindowFlags = CORE.Window.flags;
// Check window creation flags // Check window creation flags
if ((CORE.Window.flags & FLAG_FULLSCREEN_MODE) > 0) CORE.Window.fullscreen = true; if ((CORE.Window.flags & FLAG_FULLSCREEN_MODE) > 0) CORE.Window.fullscreen = true;
@ -1677,7 +1677,7 @@ int InitPlatform(void)
} }
// Apply window flags requested previous to initialization // Apply window flags requested previous to initialization
SetWindowState(requetedWindowFlags);
SetWindowState(requestedWindowFlags);
// Load OpenGL extensions // Load OpenGL extensions
// NOTE: GL procedures address loader is required to load extensions // NOTE: GL procedures address loader is required to load extensions

Loading…
取消
儲存