|
From: Tapio V. <aa...@us...> - 2010-07-22 15:36:23
|
Module: performous
Branch: portaudio
Commit: c72033b9e17ea640563625b818bf63d9d2a07b3d
Author: John Stumpo <st...@js...>
Date: Fri Jun 25 23:01:21 2010 -0400
Fix an include for Linux-to-Windows cross-compilation.
---
game/fs.cc | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/game/fs.cc b/game/fs.cc
index 32163d0..5047c36 100644
--- a/game/fs.cc
+++ b/game/fs.cc
@@ -9,7 +9,7 @@
#ifdef _WIN32
#include <windows.h>
-#include <Shlobj.h>
+#include <shlobj.h>
#endif
fs::path getHomeDir() {
|