Skip to content

Commit

Permalink
fix win32 build of TexturePacker
Browse files Browse the repository at this point in the history
  • Loading branch information
Jonathan Marshall committed Jul 25, 2011
1 parent 8a8ad82 commit 96ecf5a
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions tools/TexturePacker/XBMCTex.cpp
Expand Up @@ -19,16 +19,18 @@
*
*/

//#include <sys/types.h>
//#include <sys/stat.h>
#ifdef _WIN32
#include <sys/types.h>
#include <sys/stat.h>
#define __STDC_FORMAT_MACROS
#include <inttypes.h>
#endif
//#include <string>
#include <cerrno>
//#include <cstring>
//#include <inttypes.h>
#include <dirent.h>
#include <map>

//#define __STDC_FORMAT_MACROS
#include <SDL/SDL.h>
#include <SDL/SDL_image.h>
#undef main
Expand Down

0 comments on commit 96ecf5a

Please sign in to comment.