diff --git a/source/paul/animtest.cpp b/source/paul/animtest.cpp index 2fba52392..68ed9de9f 100644 --- a/source/paul/animtest.cpp +++ b/source/paul/animtest.cpp @@ -15,6 +15,7 @@ /*---------------------------------------------------------------------- Includes -------- */ +#if defined(__VERSION_DEBUG__) #include "paul\animtest.h" @@ -316,6 +317,11 @@ void CAnimTestScene::think(int _frames) } } +#else +void AnimTestDummyStub() +{ +} +#endif /*=========================================================================== end */ diff --git a/source/paul/paul.cpp b/source/paul/paul.cpp index e4c1ddbce..47f23e20a 100644 --- a/source/paul/paul.cpp +++ b/source/paul/paul.cpp @@ -15,6 +15,7 @@ /*---------------------------------------------------------------------- Includes -------- */ +#if defined(__VERSION_DEBUG__) #include "paul\paul.h" @@ -193,6 +194,11 @@ void CPaulScene::think(int _frames) } } +#else +void PaulDummyStub() +{ +} +#endif /*=========================================================================== end */ diff --git a/source/paul/scenesel.cpp b/source/paul/scenesel.cpp index d6a7408b8..13085183a 100644 --- a/source/paul/scenesel.cpp +++ b/source/paul/scenesel.cpp @@ -16,6 +16,8 @@ Includes -------- */ +#if defined(__VERSION_DEBUG__) + #include "paul\scenesel.h" #ifndef __GFX_FONT_H__ @@ -285,6 +287,11 @@ void CSceneSelector::selectScene(int _scene) GameState::setNextScene(s_sceneList[_scene]); } +#else +void SceneSelTestDummyStub() +{ +} +#endif /*=========================================================================== end */ \ No newline at end of file diff --git a/source/paul/sndtest.cpp b/source/paul/sndtest.cpp index 46dc7adfc..84a5f6919 100644 --- a/source/paul/sndtest.cpp +++ b/source/paul/sndtest.cpp @@ -15,6 +15,7 @@ /*---------------------------------------------------------------------- Includes -------- */ +#if defined(__VERSION_DEBUG__) #include "paul\sndtest.h" @@ -163,6 +164,11 @@ int CSceneSoundTest::readyToShutdown() return false; } +#else +void SndTestSelTestDummyStub() +{ +} +#endif /*=========================================================================== end */ \ No newline at end of file