From 1f83f2112754bd195b63067c41872e232cc3ddb5 Mon Sep 17 00:00:00 2001 From: "wagic.the.homebrew@gmail.com" Date: Sun, 28 Nov 2010 04:23:30 +0000 Subject: [PATCH] Erwan - version string update / replaced "beg for donation" text in game end screen --- projects/mtg/src/Credits.cpp | 9 +++------ projects/mtg/src/GameStateMenu.cpp | 2 +- 2 files changed, 4 insertions(+), 7 deletions(-) diff --git a/projects/mtg/src/Credits.cpp b/projects/mtg/src/Credits.cpp index fdd6d94ad..7598d3172 100644 --- a/projects/mtg/src/Credits.cpp +++ b/projects/mtg/src/Credits.cpp @@ -290,12 +290,9 @@ void Credits::Render() if (showMsg == 1) { - f2->DrawString(_("Please support this project!").c_str(), 10, y + 15); - f->DrawString(_("Wagic is free, open source, and developed on the little free time I have").c_str(), 10, y + 30); - f->DrawString(_("If you enjoy this game, please consider donating a few bucks").c_str(), 10, y + 42); - f->DrawString(_("(Seriously, donate or I'll kill this cute little bunny)").c_str(), 10, y + 54); - f->DrawString(_("Thanks in advance for your support.").c_str(), 10, y + 66); - f2->DrawString("-> http://wololo.net/wagic", 10, y + 78); + f2->DrawString(_("There's more!").c_str(), 10, y + 15); + f->DrawString(_("Mods, additional cards, updates and more at:").c_str(), 10, y + 30); + f2->DrawString("-> http://wololo.net/wagic", 10, y + 42); } } diff --git a/projects/mtg/src/GameStateMenu.cpp b/projects/mtg/src/GameStateMenu.cpp index 3f28fdc39..035d821f2 100644 --- a/projects/mtg/src/GameStateMenu.cpp +++ b/projects/mtg/src/GameStateMenu.cpp @@ -19,7 +19,7 @@ #include "WFont.h" #include -static const char* GAME_VERSION = "WTH?! 0.13.1 - by wololo"; +static const char* GAME_VERSION = "WTH?! 0.14.0 - wololo.net"; #define DEFAULT_ANGLE_MULTIPLIER 0.4f #define MAX_ANGLE_MULTIPLIER (3*M_PI)