Made more .stkgui name correspond to the c++ file name.

This commit is contained in:
hiker 2015-10-07 12:33:36 +11:00
parent 14e84ed96b
commit 3aadc019a3
4 changed files with 4 additions and 3 deletions

View File

@ -35,7 +35,7 @@ using namespace GUIEngine;
DEFINE_SCREEN_SINGLETON( EditGPScreen ); DEFINE_SCREEN_SINGLETON( EditGPScreen );
// ----------------------------------------------------------------------------- // -----------------------------------------------------------------------------
EditGPScreen::EditGPScreen() : Screen("gpedit.stkgui"), m_gp(NULL), EditGPScreen::EditGPScreen() : Screen("edit_gp.stkgui"), m_gp(NULL),
m_list(NULL), m_icon_bank(NULL), m_list(NULL), m_icon_bank(NULL),
m_selected(-1), m_modified(false) m_selected(-1), m_modified(false)
{ {

View File

@ -40,8 +40,9 @@ DEFINE_SCREEN_SINGLETON( GrandPrixEditorScreen );
// ----------------------------------------------------------------------------- // -----------------------------------------------------------------------------
GrandPrixEditorScreen::GrandPrixEditorScreen() GrandPrixEditorScreen::GrandPrixEditorScreen()
: Screen("gpeditor.stkgui"), m_selection(NULL), m_gpgroup(GrandPrixData::GP_NONE) : Screen("grand_prix_editor.stkgui"), m_selection(NULL),
m_gpgroup(GrandPrixData::GP_NONE)
{ {
} }