summaryrefslogtreecommitdiff
path: root/src/gfx.cpp
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2008-12-12 19:54:54 +0000
committerrubidium <rubidium@openttd.org>2008-12-12 19:54:54 +0000
commitf98e498771be66e833aa197b69f49697759393e7 (patch)
treecafcd7a142a212e6a60b8cbba78fb11b76cb0ee5 /src/gfx.cpp
parent66455c9d313e71b6e6e85bee8952647eb585b8d3 (diff)
downloadopenttd-f98e498771be66e833aa197b69f49697759393e7.tar.xz
(svn r14668) -Change: use include <> instead of include "" when including ICU's headers.
Diffstat (limited to 'src/gfx.cpp')
-rw-r--r--src/gfx.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gfx.cpp b/src/gfx.cpp
index 9b613ceef..97ac74d2f 100644
--- a/src/gfx.cpp
+++ b/src/gfx.cpp
@@ -242,8 +242,8 @@ void DrawBox(int x, int y, int dx1, int dy1, int dx2, int dy2, int dx3, int dy3)
#if !defined(WITH_ICU)
static void HandleBiDiAndArabicShapes(char *text, const char *lastof) {}
#else
-#include "unicode/ubidi.h"
-#include "unicode/ushape.h"
+#include <unicode/ubidi.h>
+#include <unicode/ushape.h>
/**
* Function to be able to handle right-to-left text and Arabic chars properly.