Browse Source

Make the GTK editor more responsive.

legacy
Sam Hocevar sam 14 years ago
parent
commit
601ce07746
1 changed files with 3 additions and 3 deletions
  1. +3
    -3
      src/gtk/editor.cpp

+ 3
- 3
src/gtk/editor.cpp View File

@@ -156,9 +156,9 @@ int main(int argc, char **argv)
new Game("maps/testmap.tmx"); new Game("maps/testmap.tmx");
new DebugFps(); 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(); gtk_main();


return EXIT_SUCCESS; return EXIT_SUCCESS;


Loading…
Cancel
Save