added special mode to continue from hall of fame when pressing "space" key
[rocksndiamonds.git] / src / screens.c
index 58a9afae8ab2a8e3b0235f253b5690a2cf169263..326fa677c0973404caa4abd28f6dfb97b7746e92 100644 (file)
@@ -4912,14 +4912,14 @@ static void HandleChooseTree(int mx, int my, int dx, int dy, int button,
       return;
     }
   }
-  else if (dx == -1 && ti->node_parent)
+  else if ((dx == -1 || button == MB_MENU_CONTINUE) && ti->node_parent)
   {
-    FadeSetLeaveMenu();
+    if (game_status != GAME_MODE_SCORES)
+      FadeSetLeaveMenu();
 
     PlaySound(SND_MENU_ITEM_SELECTING);
 
     *ti_ptr = ti->node_parent;
-
     DrawChooseTree(ti_ptr);
 
     return;