summaryrefslogtreecommitdiffstats
path: root/src/main.cpp
diff options
context:
space:
mode:
authoraap <aap@papnet.eu>2019-05-29 23:17:41 +0200
committerGitHub <noreply@github.com>2019-05-29 23:17:41 +0200
commitb705be0e873a3b93c561a7945748328604e48f21 (patch)
tree8f8b32c251a57707b676a037d6846e7d0162dd18 /src/main.cpp
parentimplemented some of CCam and dependencies (diff)
parentfix2 (diff)
downloadre3-b705be0e873a3b93c561a7945748328604e48f21.tar
re3-b705be0e873a3b93c561a7945748328604e48f21.tar.gz
re3-b705be0e873a3b93c561a7945748328604e48f21.tar.bz2
re3-b705be0e873a3b93c561a7945748328604e48f21.tar.lz
re3-b705be0e873a3b93c561a7945748328604e48f21.tar.xz
re3-b705be0e873a3b93c561a7945748328604e48f21.tar.zst
re3-b705be0e873a3b93c561a7945748328604e48f21.zip
Diffstat (limited to '')
-rw-r--r--src/main.cpp22
1 files changed, 21 insertions, 1 deletions
diff --git a/src/main.cpp b/src/main.cpp
index 4f125098..853308a1 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -24,17 +24,37 @@ void operator delete(void *ptr) noexcept { gtadelete(ptr); }
unsigned __int64 myrand_seed = 1;
+
+int _cwrand() // original codewarrior rand
+{
+ return ((int (__cdecl *)())0x5A41D0)();
+}
+
int
-myrand(void)
+myps2rand(void)
{
+ return _cwrand();
myrand_seed = 0x5851F42D4C957F2D * myrand_seed + 1;
return ((myrand_seed >> 32) & 0x7FFFFFFF);
}
+int myrand(void)
+{
+#if USE_PS2_RAND == TRUE
+ return myps2rand();
+#else
+ return _cwrand();
+#endif
+}
+
void
mysrand(unsigned int seed)
{
+#if USE_PS2_RAND == TRUE
myrand_seed = seed;
+#else
+ ;
+#endif
}
// platform stuff