UI: Updated version strings to v2.1.7 in main.cpp

This commit is contained in:
Michael Howard 2026-04-24 15:31:12 -05:00
parent d04256a56c
commit 236f66aa2a
3 changed files with 3 additions and 3 deletions

Binary file not shown.

Binary file not shown.

View File

@ -824,7 +824,7 @@ int main(void)
// By default, windows have minimize, maximize, and close buttons on the top bar.
SetConfigFlags(FLAG_WINDOW_RESIZABLE | FLAG_VSYNC_HINT);
InitWindow(screenWidth, screenHeight, "MorriCraft v2.1.5");
InitWindow(screenWidth, screenHeight, "MorriCraft v2.1.7");
LoadConfig();
SetExitKey(KEY_NULL); // Prevent ESC from closing the window
@ -1999,8 +1999,8 @@ int main(void)
DrawTexturePro(titleTexture, sourceRec, destRec, origin, 0.0f, WHITE);
EndMode2D();
// Show Version Number (v2.1.5) in Red
DrawTextEx(customFont, "v2.1.5", (Vector2){ (float)currentWidth - 140, (float)currentHeight - 40 }, 22, 1.0f, RED);
// Show Version Number (v2.1.7) in Red
DrawTextEx(customFont, "v2.1.7", (Vector2){ (float)currentWidth - 140, (float)currentHeight - 40 }, 22, 1.0f, RED);
// --- PLAYER NAME POPUP (IF MISSING) ---
if (playerName == "") {