1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-17 03:53:07 +01:00

Fix build on OSX (missing include)

This commit is contained in:
Balletie
2014-08-21 11:56:45 +02:00
parent 0969c0bcff
commit 8d75552cf4

View File

@@ -23,6 +23,7 @@
#include <stdint.h>
#include <string.h>
#include <windows.h>
#include <limits.h>
#include "addresses.h"
#include "gfx.h"
#include "rct2.h"
@@ -2388,4 +2389,4 @@ void draw_string_right_underline(rct_drawpixelinfo *dpi, int format, void *args,
gfx_fill_rect(dpi, x, y + 11, x + width, y + 11, text_palette[1]);
if (text_palette[2] != 0)
gfx_fill_rect(dpi, x + 1, y + 12, x + width + 1, y + 12, text_palette[2]);
}
}