From 31812a08a560b79b944afdd9a73184c459b71fcd Mon Sep 17 00:00:00 2001 From: duncanspumpkin Date: Wed, 15 Jun 2016 19:11:51 +0100 Subject: [PATCH] Remove hooks. All string code now implemented --- src/openrct2.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/openrct2.c b/src/openrct2.c index 58a2f7d6f0..3e9f151cca 100644 --- a/src/openrct2.c +++ b/src/openrct2.c @@ -589,9 +589,7 @@ bool openrct2_setup_rct2_segment() */ static void openrct2_setup_rct2_hooks() { - addhook(0x006C42D9, (int)scrolling_text_setup, 0, (int[]){EAX, ECX, EBP, END}, 0, EBX); // remove when all callers are decompiled - addhook(0x006C2321, (int)gfx_get_string_width, 0, (int[]){ESI, END}, 0, ECX); // remove when all callers are decompiled - addhook(0x006C2555, (int)format_string, 0, (int[]){EDI, EAX, ECX, END}, 0, 0); // remove when all callers are decompiled + // None for now } #if _MSC_VER >= 1900