mirror of
https://github.com/BluTac10/360Revived.git
synced 2026-07-18 06:21:31 +00:00
Merge pull request #7 from dognews/fix-autosave-message
Fix wrong console displayed
This commit is contained in:
@@ -7,6 +7,8 @@
|
||||
|
||||
UIScene_SaveMessage::UIScene_SaveMessage(int iPad, void *initData, UILayer *parentLayer) : UIScene(iPad, parentLayer)
|
||||
{
|
||||
constexpr static wchar_t localeBypassedText[] = L"This game has a level autosave feature. When you see the icon above displayed, the game is saving your data. \nPlease do not turn off your Xbox 360 console while this icon is on-screen.";
|
||||
|
||||
// Setup all the Iggy references we need for this scene
|
||||
initialiseMovie();
|
||||
|
||||
@@ -14,7 +16,9 @@ UIScene_SaveMessage::UIScene_SaveMessage(int iPad, void *initData, UILayer *pare
|
||||
parentLayer->addComponent(iPad,eUIComponent_Logo);
|
||||
|
||||
m_buttonConfirm.init(app.GetString(IDS_CONFIRM_OK),eControl_Confirm);
|
||||
m_labelDescription.init(app.GetString(IDS_SAVE_ICON_MESSAGE));
|
||||
// TODO: Reverse localization file format and pull from localized message ID
|
||||
//m_labelDescription.init(app.GetString(IDS_SAVE_ICON_MESSAGE));
|
||||
m_labelDescription.init(localeBypassedText);
|
||||
|
||||
IggyDataValue result;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user