# HG changeset patch # User koda # Date 1353433902 -3600 # Node ID 768427321cabb3734decb16f13cd26ce4c193ba3 # Parent 5a289ef40fdb2a2f7180be2ad1b6a4e7cb65d1dc thou shall not use system headers for crossplatformness diff -r 5a289ef40fdb -r 768427321cab misc/physfs/extras/hwpacksmounter.c --- a/misc/physfs/extras/hwpacksmounter.c Tue Nov 20 18:33:09 2012 +0100 +++ b/misc/physfs/extras/hwpacksmounter.c Tue Nov 20 18:51:42 2012 +0100 @@ -1,7 +1,7 @@ #include #include #include -#include +#include "physfs.h" #include "hwpacksmounter.h" diff -r 5a289ef40fdb -r 768427321cab misc/physfs/extras/physfslualoader.c --- a/misc/physfs/extras/physfslualoader.c Tue Nov 20 18:33:09 2012 +0100 +++ b/misc/physfs/extras/physfslualoader.c Tue Nov 20 18:51:42 2012 +0100 @@ -1,5 +1,5 @@ -#include -#include +#include "lua.h" +#include "physfs.h" #define BUFSIZE 1024 @@ -26,4 +26,5 @@ void physfsReaderSetBuffer(void *buffer) { physfsReaderBuffer = buffer; -} \ No newline at end of file +} +