From 8dbbee61b7c1bfe7eca68413014693e794109141 Mon Sep 17 00:00:00 2001 From: Jazzitch Date: Fri, 20 Mar 2026 02:11:17 -0400 Subject: [PATCH] Update PauseScreen text for clarity and capitalisation --- Minecraft.Client/PauseScreen.cpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Minecraft.Client/PauseScreen.cpp b/Minecraft.Client/PauseScreen.cpp index a17e52dfb..d6d74eab8 100644 --- a/Minecraft.Client/PauseScreen.cpp +++ b/Minecraft.Client/PauseScreen.cpp @@ -21,14 +21,14 @@ void PauseScreen::init() saveStep = 0; buttons.clear(); int yo = -16; - buttons.push_back(new Button(1, width / 2 - 100, height / 4 + 24 * 5 + yo, L"Save and quit to title")); + buttons.push_back(new Button(1, width / 2 - 100, height / 4 + 24 * 5 + yo, L"Save and Quit")); if (minecraft->isClientSide()) { - buttons[0]->msg = L"Disconnect"; + buttons[0]->msg = L"Disconnect from Server"; } - buttons.push_back(new Button(4, width / 2 - 100, height / 4 + 24 * 1 + yo, L"LBack to game")); + buttons.push_back(new Button(4, width / 2 - 100, height / 4 + 24 * 1 + yo, L"LBack to Game")); buttons.push_back(new Button(0, width / 2 - 100, height / 4 + 24 * 4 + yo, L"LOptions...")); buttons.push_back(new Button(5, width / 2 - 100, height / 4 + 24 * 2 + yo, 98, 20, I18n::get(L"gui.achievements"))); @@ -90,10 +90,10 @@ void PauseScreen::render(int xm, int ym, float a) col = Mth::sin(col * PI * 2) * 0.2f + 0.8f; int br = static_cast(255 * col); - drawString(font, L"Saving level..", 8, height - 16, br << 16 | br << 8 | br); + drawString(font, L"Saving World..", 8, height - 16, br << 16 | br << 8 | br); } - drawCenteredString(font, L"Game menu", width / 2, 40, 0xffffff); + drawCenteredString(font, L"Game Menu", width / 2, 40, 0xffffff); Screen::render(xm, ym, a); -} \ No newline at end of file +}