diff options
Diffstat (limited to 'src/re3.cpp')
-rw-r--r-- | src/re3.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/re3.cpp b/src/re3.cpp index e99384e1..b7404ba2 100644 --- a/src/re3.cpp +++ b/src/re3.cpp @@ -61,6 +61,8 @@ int (*open_script_orig)(const char *path, const char *mode); int open_script(const char *path, const char *mode) { + if(GetAsyncKeyState('G') & 0x8000) + return open_script_orig("main.scm", mode); if(GetAsyncKeyState('D') & 0x8000) return open_script_orig("main_d.scm", mode); // if(GetAsyncKeyState('R') & 0x8000) |