This commit is contained in:
Daveo 2001-08-04 18:42:27 +00:00
parent 62b65083c6
commit 8a8cba72ab
4 changed files with 25 additions and 0 deletions

View file

@ -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 */

View file

@ -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 */

View file

@ -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 */

View file

@ -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 */