Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion Minecraft.Client/Common/UI/UIScene_SaveMessage.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,18 @@

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();

parentLayer->addComponent(iPad,eUIComponent_Panorama);
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;

Expand Down
Loading