aboutsummaryrefslogtreecommitdiff
path: root/engines
diff options
context:
space:
mode:
authorEinar Johan Trøan Sømåen2012-06-11 18:47:21 +0200
committerEinar Johan Trøan Sømåen2012-06-11 18:47:21 +0200
commit58b054ca970a8cb74d0e5549de522f98d7700801 (patch)
tree86dd9f7974d0e3de2d8703bdeab6ba7b531af72a /engines
parent0b02dae394a6fa4828c22526a518accaacc8bd51 (diff)
downloadscummvm-rg350-58b054ca970a8cb74d0e5549de522f98d7700801.tar.gz
scummvm-rg350-58b054ca970a8cb74d0e5549de522f98d7700801.tar.bz2
scummvm-rg350-58b054ca970a8cb74d0e5549de522f98d7700801.zip
WINTERMUTE: Stub out BRenderSDL::DumpData, to get rid of the FORBIDDEN_SYMBOL_EXCEPTIONs there
Diffstat (limited to 'engines')
-rw-r--r--engines/wintermute/Base/BRenderSDL.cpp8
1 files changed, 3 insertions, 5 deletions
diff --git a/engines/wintermute/Base/BRenderSDL.cpp b/engines/wintermute/Base/BRenderSDL.cpp
index 365dd0b62d..2457de8f51 100644
--- a/engines/wintermute/Base/BRenderSDL.cpp
+++ b/engines/wintermute/Base/BRenderSDL.cpp
@@ -26,11 +26,6 @@
* Copyright (c) 2011 Jan Nedoma
*/
-#define FORBIDDEN_SYMBOL_EXCEPTION_fprintf
-#define FORBIDDEN_SYMBOL_EXCEPTION_fopen
-#define FORBIDDEN_SYMBOL_EXCEPTION_fclose
-#define FORBIDDEN_SYMBOL_EXCEPTION_FILE
-
#include "engines/wintermute/dcgf.h"
#include "engines/wintermute/Base/BRenderSDL.h"
#include "engines/wintermute/Base/BRegistry.h"
@@ -443,6 +438,8 @@ void CBRenderSDL::PointToScreen(POINT *point) {
//////////////////////////////////////////////////////////////////////////
void CBRenderSDL::DumpData(const char *Filename) {
+ warning("CBRenderSDL::DumpData(%s) - not reimplemented yet", Filename); // TODO
+#if 0
FILE *f = fopen(Filename, "wt");
if (!f) return;
@@ -471,6 +468,7 @@ void CBRenderSDL::DumpData(const char *Filename) {
fclose(f);
Game->LOG(0, "Texture Stats Dump completed.");
Game->QuickMessage("Texture Stats Dump completed.");
+#endif
}
} // end of namespace WinterMute