extended reset to enter key press as well in the title screen
This commit is contained in:
parent
d73953d027
commit
1c20d0faf3
1 changed files with 1 additions and 1 deletions
|
@ -97,7 +97,7 @@ keypress.register_combo({
|
|||
keypress.register_combo({
|
||||
keys: "enter",
|
||||
on_keydown: function() {
|
||||
if (gameState==2 || gameState==1) {
|
||||
if (gameState==2 || gameState==1 || importing == 1) {
|
||||
init(1);
|
||||
}
|
||||
if (gameState==0){ init();}
|
||||
|
|
Loading…
Reference in a new issue