extended reset to enter key press as well in the title screen

This commit is contained in:
meadowstream 2014-06-27 19:10:49 -04:00
parent d73953d027
commit 1c20d0faf3

View file

@ -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();}