This commit is contained in:
parent
329465176d
commit
fe2d8549f0
1 changed files with 13 additions and 0 deletions
|
@ -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…
Add table
Reference in a new issue