Просмотр исходного кода

Have a seperate type selection ui on startup

Sanjay Govind 11 месяцев назад
Родитель
Сommit
d316488845
1 измененных файлов с 2 добавлено и 2 удалено
  1. 2 2
      scenes/pof_scene_type_select.c

+ 2 - 2
scenes/pof_scene_type_select.c

@@ -38,12 +38,12 @@ bool pof_scene_type_select_on_event(void* context, SceneManagerEvent event) {
         if (event.event == SubmenuIndexSwapHid) {
             pof->type = PoFHid;
             pof_start(pof);
-            scene_manager_next_scene(pof->scene_manager, PoFSceneFileSelect);
+            scene_manager_next_scene(pof->scene_manager, PoFSceneMain);
             return true;
         } else if (event.event == SubmenuIndexSwapXbox360) {
             pof->type = PoFXbox360;
             pof_start(pof);
-            scene_manager_next_scene(pof->scene_manager, PoFSceneFileSelect);
+            scene_manager_next_scene(pof->scene_manager, PoFSceneMain);
             return true;
         } 
     }