瀏覽代碼

Make the GTK editor more responsive.

legacy
Sam Hocevar sam 14 年之前
父節點
當前提交
601ce07746
共有 1 個檔案被更改,包括 3 行新增3 行删除
  1. +3
    -3
      src/gtk/editor.cpp

+ 3
- 3
src/gtk/editor.cpp 查看文件

@@ -156,9 +156,9 @@ int main(int argc, char **argv)
new Game("maps/testmap.tmx");
new DebugFps();

//gtk_idle_add(tick, glarea);
gtk_timeout_add(1000 / FPS, tick, glarea);
/* We tick from the idle function instead of a timeout to avoid
* stealing time from the GTK loop. */
gtk_idle_add(tick, glarea);
gtk_main();

return EXIT_SUCCESS;


Loading…
取消
儲存