This commit is contained in:
Paul 2000-09-11 23:55:20 +00:00
parent a19b480fa2
commit ee331d19de

View File

@ -28,6 +28,12 @@
#define SCREEN_GRAB
#ifdef __USER_paul__
#include "paul\paul.h"
CPaulScene s_paulScene;
#endif
/*****************************************************************************/
void SaveScreen(RECT R);
@ -60,6 +66,9 @@ void InitSystem() // reordered to reduce black screen (hope all is well
GameState::initialise();
#ifdef __USER_paul__
s_paulScene.init();
#endif
}
/*****************************************************************************/
@ -76,6 +85,11 @@ void MainLoop()
GameState::think();
GameState::render();
#ifdef __USER_paul__
s_paulScene.think();
s_paulScene.render();
#endif
while(DrawSync(1));
VSync(0);