We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d65ffe3 commit 9f014d4Copy full SHA for 9f014d4
src/data/SaveData.hx
@@ -80,13 +80,14 @@ class SaveData {
80
var window = lime.app.Application.current.window;
81
window.onClose.add(save);
82
83
- open();
84
-
85
if (!FileSystem.exists('save.dat')) {
86
87
- if (state.graphics.frameRate == 0) state.graphics.frameRate = window.displayMode.refreshRate;
88
save();
89
}
+
+ open();
90
+ if (state.graphics.frameRate == 0) state.graphics.frameRate = window.displayMode.refreshRate * 4;
91
92
93
static function open() {
0 commit comments