From 5983b8e2341196cd55b9dfb6411d7fdec95dd731 Mon Sep 17 00:00:00 2001 From: Clownacy Date: Wed, 1 Jul 2020 21:57:57 +0100 Subject: [PATCH] Don't mark `out` as static Causes it to be put in the wrong part of the EXE for some reason, even though we know from the Mac port that it *was* static. --- src/Draw.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Draw.cpp b/src/Draw.cpp index 4c30e934..4261ba1e 100644 --- a/src/Draw.cpp +++ b/src/Draw.cpp @@ -732,7 +732,7 @@ void CortBox2(const RECT *rect, unsigned long col, SurfaceID surf_no) // Dummied-out log function // According to the Mac port, its name really is just "out". -static BOOL out(int unknown) +BOOL out(int unknown) { char unknown2[0x100]; int unknown3;