Fixed a graphical bug

This commit is contained in:
Kayne Ruse
2015-08-24 02:03:00 +10:00
parent dfa8683c47
commit 45f67476b8
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -86,7 +86,7 @@ void ClientApplication::Init(int argc, char* argv[]) {
case SDL_SYSWM_WINDOWS:
//TODO: ensure that this works
platform = "Microsoft Windows";
fontPath = "C:/Windows/Fonts/arialuni.ttf";
fontPath = "C:/Windows/Fonts/arialbd.ttf";
break;
case SDL_SYSWM_X11:
@@ -97,7 +97,7 @@ void ClientApplication::Init(int argc, char* argv[]) {
//NOTE: OS X is currently unsupported, but it could be
case SDL_SYSWM_COCOA:
platform = "Apple OS X";
fontPath = "/System/Library/Fonts/arialuni.ttf";
fontPath = "/System/Library/Fonts/arialbd.ttf";
break;
default: