This commit is contained in:
parent
5d10a37920
commit
046bdf0530
7 changed files with 775 additions and 8 deletions
|
@ -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__)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue