diff --git a/Minecraft.Client/DeathScreen.cpp b/Minecraft.Client/DeathScreen.cpp index 0e9cfb191..6265aa0f4 100644 --- a/Minecraft.Client/DeathScreen.cpp +++ b/Minecraft.Client/DeathScreen.cpp @@ -9,7 +9,7 @@ void DeathScreen::init() { buttons.clear(); buttons.push_back(new Button(1, width / 2 - 100, height / 4 + 24 * 3, L"Respawn")); - buttons.push_back(new Button(2, width / 2 - 100, height / 4 + 24 * 4, L"Title menu")); + buttons.push_back(new Button(2, width / 2 - 100, height / 4 + 24 * 4, L"Exit to Title Menu")); if (minecraft->user == nullptr) { @@ -46,7 +46,7 @@ void DeathScreen::render(int xm, int ym, float a) glPushMatrix(); glScalef(2, 2, 2); - drawCenteredString(font, L"Game over!", width / 2 / 2, 60 / 2, 0xffffff); + drawCenteredString(font, L"Game Over!", width / 2 / 2, 60 / 2, 0xffffff); glPopMatrix(); drawCenteredString(font, L"Score: &e" + std::to_wstring( minecraft->player->getScore() ), width / 2, 100, 0xffffff); @@ -64,4 +64,4 @@ void DeathScreen::render(int xm, int ym, float a) bool DeathScreen::isPauseScreen() { return false; -} \ No newline at end of file +}