Skip to content

Commit

Permalink
Enable quickload (#284)
Browse files Browse the repository at this point in the history
* Enable quickload
  • Loading branch information
matthiakl authored Aug 21, 2022
1 parent 5485f84 commit 9dbb4f2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion game/mainwindow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -686,10 +686,11 @@ void MainWindow::onMarvinKey() {

case Event::K_F9:
if(Gothic::inst().isMarvinEnabled()) {
// note: quick load?
if(runtimeMode==R_Normal)
runtimeMode = R_Suspended; else
runtimeMode = R_Normal;
} else {
Gothic::inst().quickLoad();
}
break;
case Event::K_F10:
Expand Down

0 comments on commit 9dbb4f2

Please sign in to comment.