This commit is contained in:
parent
7bcf305c41
commit
e00a8747fc
1 changed files with 10 additions and 2 deletions
|
@ -156,6 +156,7 @@ void CPaulScene::init()
|
|||
CGUITextEntry *te;
|
||||
|
||||
s_fontBank.initialise(&standardFont);
|
||||
s_fontBank.setColour(255,255,255);
|
||||
|
||||
int mem=MainRam.TotalRam-MainRam.RamUsed;
|
||||
PAUL_DBGMSG("initial mem free=%d",mem);
|
||||
|
@ -279,7 +280,6 @@ void CPaulScene::shutdown()
|
|||
int showDebugLog=false;
|
||||
void CPaulScene::render()
|
||||
{
|
||||
/*
|
||||
if(showDebugLog)
|
||||
{
|
||||
int logCount;
|
||||
|
@ -294,6 +294,7 @@ void CPaulScene::render()
|
|||
}
|
||||
}
|
||||
|
||||
/*
|
||||
if(baseGUIObject)
|
||||
baseGUIObject->render();
|
||||
|
||||
|
@ -312,6 +313,12 @@ void CPaulScene::render()
|
|||
---------------------------------------------------------------------- */
|
||||
void CPaulScene::think(int _frames)
|
||||
{
|
||||
if(PadGetHeld(0)&PAD_R1&&PadGetDown(0)&PAD_R2)
|
||||
{
|
||||
showDebugLog=!showDebugLog;
|
||||
}
|
||||
|
||||
/*
|
||||
if(readyToExit)
|
||||
{
|
||||
baseGUIObject->shutdown();
|
||||
|
@ -326,6 +333,7 @@ void CPaulScene::think(int _frames)
|
|||
s_bg1->think(_frames);
|
||||
s_bg2->think(_frames);
|
||||
s_bg3->think(_frames);
|
||||
*/
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue