This commit is contained in:
parent
329465176d
commit
fe2d8549f0
@ -37,6 +37,10 @@
|
||||
#include "system\lnkopt.h"
|
||||
#endif
|
||||
|
||||
#ifndef __SYSTEM_GSTATE_H__
|
||||
#include "system\gstate.h"
|
||||
#endif
|
||||
|
||||
|
||||
/* Std Lib
|
||||
------- */
|
||||
@ -466,6 +470,7 @@ static void displayDump()
|
||||
static void displayValues()
|
||||
{
|
||||
char textBuf[256];
|
||||
CScene *scene;
|
||||
|
||||
excFont->setColour(255,255,255);
|
||||
|
||||
@ -474,6 +479,14 @@ static void displayValues()
|
||||
print(textBuf);
|
||||
sprintf(textBuf," %dk ram size set in link options\n",(int)(OPT_LinkerOpts.RamSize/1024));
|
||||
print(textBuf);
|
||||
|
||||
print("Scene:\n");
|
||||
scene=GameState::getCurrentScene();
|
||||
sprintf(textBuf," Current scene: %s\n",scene->getSceneName());
|
||||
print(textBuf);
|
||||
scene=GameState::getPendingScene();
|
||||
sprintf(textBuf," Pending scene: %s\n",scene?scene->getSceneName():"None");
|
||||
print(textBuf);
|
||||
}
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user