瀏覽代碼

fix android SetWindowState

pull/5424/head
caszuu 2 月之前
父節點
當前提交
895d0d1247
共有 1 個檔案被更改,包括 1 行新增1 行删除
  1. +1
    -1
      src/platforms/rcore_android.c

+ 1
- 1
src/platforms/rcore_android.c 查看文件

@ -360,7 +360,7 @@ void SetWindowState(unsigned int flags)
if (!CORE.Window.ready) TRACELOG(LOG_WARNING, "WINDOW: SetWindowState does nothing before window initialization, Use \"SetConfigFlags\" instead");
// State change: FLAG_WINDOW_ALWAYS_RUN
if (o">!FLAG_IS_SET(flags, FLAG_WINDOW_ALWAYS_RUN)) FLAG_SET(CORE.Window.flags, FLAG_WINDOW_ALWAYS_RUN);
if (FLAG_IS_SET(flags, FLAG_WINDOW_ALWAYS_RUN)) FLAG_SET(CORE.Window.flags, FLAG_WINDOW_ALWAYS_RUN);
}
// Clear window configuration state flags

Loading…
取消
儲存