summaryrefslogtreecommitdiffstats
path: root/src/core/re3.cpp
diff options
context:
space:
mode:
authorNikolay Korolev <nickvnuk@gmail.com>2019-07-07 18:00:02 +0200
committerNikolay Korolev <nickvnuk@gmail.com>2019-07-07 18:00:02 +0200
commitee0494b2d86aef799177cc0b80383a29ceee441b (patch)
tree83f8f1f29cafd639000461559f249a7b42d032cd /src/core/re3.cpp
parentthe great reorganization (diff)
downloadre3-ee0494b2d86aef799177cc0b80383a29ceee441b.tar
re3-ee0494b2d86aef799177cc0b80383a29ceee441b.tar.gz
re3-ee0494b2d86aef799177cc0b80383a29ceee441b.tar.bz2
re3-ee0494b2d86aef799177cc0b80383a29ceee441b.tar.lz
re3-ee0494b2d86aef799177cc0b80383a29ceee441b.tar.xz
re3-ee0494b2d86aef799177cc0b80383a29ceee441b.tar.zst
re3-ee0494b2d86aef799177cc0b80383a29ceee441b.zip
Diffstat (limited to 'src/core/re3.cpp')
-rw-r--r--src/core/re3.cpp23
1 files changed, 1 insertions, 22 deletions
diff --git a/src/core/re3.cpp b/src/core/re3.cpp
index 9dc39d46..d6e81214 100644
--- a/src/core/re3.cpp
+++ b/src/core/re3.cpp
@@ -57,27 +57,6 @@ mysrand(unsigned int seed)
myrand_seed = seed;
}
-int (*open_script_orig)(const char *path, const char *mode);
-int
-open_script(const char *path, const char *mode)
-{
- static int scriptToLoad = 1;
-
- if(GetAsyncKeyState('G') & 0x8000)
- scriptToLoad = 0;
- if(GetAsyncKeyState('R') & 0x8000)
- scriptToLoad = 1;
- if(GetAsyncKeyState('D') & 0x8000)
- scriptToLoad = 2;
-
- switch(scriptToLoad){
- case 0: return open_script_orig(path, mode);
- case 1: return open_script_orig("main_freeroam.scm", mode);
- case 2: return open_script_orig("main_d.scm", mode);
- }
- return open_script_orig(path, mode);
-}
-
int gDbgSurf;
void (*DebugMenuProcess)(void);
@@ -356,7 +335,7 @@ patch()
Patch<WORD>(0x5382BF, 0x0EEB);
InjectHook(0x5382EC, HeadlightsFix, PATCH_JUMP);
- InterceptCall(&open_script_orig, open_script, 0x438869);
+// InterceptCall(&open_script_orig, open_script, 0x438869);
// InterceptCall(&RsEventHandler_orig, delayedPatches10, 0x58275E);
}