瀏覽代碼

Have a seperate type selection ui on startup

Sanjay Govind 1 年之前
父節點
當前提交
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;
         } 
     }