1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-15 19:13:07 +01:00

Remove references to 0x009C383D

This commit is contained in:
Ted John
2016-09-10 23:48:29 +01:00
parent fe7800a508
commit 5db4f4f2ee
2 changed files with 9 additions and 14 deletions

View File

@@ -218,9 +218,8 @@ int chat_history_draw_string(rct_drawpixelinfo *dpi, void *args, int x, int y, i
gCurrentFontSpriteBase = FONT_SPRITE_BASE_MEDIUM;
char* buffer = RCT2_ADDRESS(0x009C383D, char);
gfx_draw_string(dpi, buffer, 255, dpi->x, dpi->y);
buffer = gCommonStringFormatBuffer;
gfx_draw_string(dpi, "", 255, dpi->x, dpi->y);
char *buffer = gCommonStringFormatBuffer;
format_string(buffer, STR_STRING, args);
gCurrentFontSpriteBase = FONT_SPRITE_BASE_MEDIUM;
@@ -251,8 +250,7 @@ int chat_string_wrapped_get_height(void *args, int width)
gCurrentFontSpriteBase = FONT_SPRITE_BASE_MEDIUM;
char* buffer = RCT2_ADDRESS(0x009C383D, char);
buffer = gCommonStringFormatBuffer;
char *buffer = gCommonStringFormatBuffer;
format_string(buffer, STR_STRING, args);
gCurrentFontSpriteBase = FONT_SPRITE_BASE_MEDIUM;