Browse Source

remove deprecated view_dispatcher_enable_queue

MX 1 year ago
parent
commit
6906e9ce48
1 changed files with 1 additions and 1 deletions
  1. 1 1
      minesweeper.c

+ 1 - 1
minesweeper.c

@@ -34,7 +34,7 @@ static MineSweeperApp* app_alloc() {
     
     // Alloc View Dispatcher and enable queue
     app->view_dispatcher = view_dispatcher_alloc();
-    view_dispatcher_enable_queue(app->view_dispatcher);
+    
     // Set View Dispatcher event callback context and callbacks
     view_dispatcher_set_event_callback_context(app->view_dispatcher, app);
     view_dispatcher_set_custom_event_callback(app->view_dispatcher, minesweeper_custom_event_callback);