]> git.jsancho.org Git - lugaru.git/blobdiff - Source/Game.h
Game builds and runs...need more input.
[lugaru.git] / Source / Game.h
index 92bac482fa967aa2c59d64c384f70727f41d3d83..c4f033eb4c8e4cb7e81e6d74c5f563c7c1ef5960 100644 (file)
@@ -297,4 +297,9 @@ static __forceinline void swap_gl_buffers(void)
 #define LONGLONGCONST(x) (x)
 #endif
 
+extern "C" { void UndefinedSymbolToExposeStubbedCode(void); }
+//#define STUBBED(x) UndefinedSymbolToExposeStubbedCode();
+#define STUBBED(x) { static bool seen = false; if (!seen) { seen = true; fprintf(stderr, "STUBBED: %s at %s:%d\n", x, __FILE__, __LINE__); } }
+//#define STUBBED(x)
+
 #endif