diff options
author | Marcus Huderle <huderlem@gmail.com> | 2018-10-24 18:16:57 -0500 |
---|---|---|
committer | Marcus Huderle <huderlem@gmail.com> | 2018-10-24 18:16:57 -0500 |
commit | c427a4af00fa46f33f7167977ea834218c37cfa8 (patch) | |
tree | 1e9d010ba004d4296935618cf4d915bb66dedc7f /src/main.c | |
parent | 41baa271c3fff795ee7ffa16d756ae427e5b792c (diff) |
Attempt to decompile sub_3219C
Diffstat (limited to 'src/main.c')
-rwxr-xr-x | src/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -187,7 +187,7 @@ static void InitIntrHandlers(void) // The number 1103515245 comes from the example implementation of rand and srand // in the ISO C standard. -int Random(void) +u32 Random(void) { gMain.rngValue = 1103515245 * gMain.rngValue + 12345; return gMain.rngValue & 0xFFFF; |