From 8156619d49f4690af257213acf4676836ca9065f Mon Sep 17 00:00:00 2001 From: "techdragon.nguyen@gmail.com" Date: Thu, 27 Jan 2011 16:15:12 +0000 Subject: [PATCH] added guard around TRACK_FILE_USAGE define to disable it on a PSP build. The related code does not compile for the PSP builds. --- projects/mtg/include/utils.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/projects/mtg/include/utils.h b/projects/mtg/include/utils.h index efea2b097..838007a02 100644 --- a/projects/mtg/include/utils.h +++ b/projects/mtg/include/utils.h @@ -29,9 +29,12 @@ #include #include +#if defined( WIN32 ) || defined (LINUX) // enable this define to collect statistics on how many times an ifstream is created for a given file. //#define TRACK_FILE_USAGE_STATS +#endif + namespace wagic {