This commit is contained in:
Paul 2000-10-20 21:52:46 +00:00
parent 5d10a37920
commit 046bdf0530
7 changed files with 775 additions and 8 deletions

View file

@ -29,15 +29,19 @@
#include "sound\sound.h"
#endif
#define SCREEN_GRAB
#ifdef __USER_paul__
#include "paul\paul.h"
CPaulScene s_paulScene;
#endif
#ifndef __SYSTEM_EXCEPT_H__
#include "system\except.h"
#endif
#define SCREEN_GRAB
/*****************************************************************************/
@ -65,6 +69,10 @@ void InitSystem() // reordered to reduce black screen (hope all is well
TPInit();
VidInit();
#ifdef __USER_paul__
installExceptionHandler(); // Where is the earliest we can do this?
#endif
setRndSeed( VidGetTickCount() );
SetDispMask(1);
@ -81,7 +89,8 @@ s_paulScene.init();
/*****************************************************************************/
/*****************************************************************************/
/*****************************************************************************/
int thing=50;
int bug=0;
static int s_time = 0;
void dumpDebugMem();
@ -113,6 +122,9 @@ void MainLoop()
DbgPollHost();
bug=100/thing;
thing--;
#if defined(__VERSION_DEBUG__)
#if defined(__DEBUG_MEM__)