diff options
author | Yohann Ferreira <bertram@cegetel.net> | 2005-01-12 16:44:09 +0000 |
---|---|---|
committer | Yohann Ferreira <bertram@cegetel.net> | 2005-01-12 16:44:09 +0000 |
commit | eb31d0badc46b8e2e3c7fbc03363941bf3302256 (patch) | |
tree | 17ef01c8661ce7d09e6984c05fd9860b2dee6d16 /src/gui/stats.cpp | |
parent | caeba363798727f75972ce6b8625fd9754bee903 (diff) | |
download | mana-eb31d0badc46b8e2e3c7fbc03363941bf3302256.tar.gz mana-eb31d0badc46b8e2e3c7fbc03363941bf3302256.tar.bz2 mana-eb31d0badc46b8e2e3c7fbc03363941bf3302256.tar.xz mana-eb31d0badc46b8e2e3c7fbc03363941bf3302256.zip |
*** empty log message ***
Diffstat (limited to 'src/gui/stats.cpp')
-rw-r--r-- | src/gui/stats.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gui/stats.cpp b/src/gui/stats.cpp index d8ea9c34..bb095130 100644 --- a/src/gui/stats.cpp +++ b/src/gui/stats.cpp @@ -67,11 +67,11 @@ StatsWindow::StatsWindow(): void StatsWindow::update(){ std::stringstream statsStr[6]; - statsStr[0] << "Strenght: " << (int)char_info->STR; + statsStr[0] << "Strength: " << (int)char_info->STR; statsStr[1] << "Agility: " << (int)char_info->AGI; statsStr[2] << "Vitality: " << (int)char_info->VIT; - statsStr[3] << "Inteligence: " << (int)char_info->INT; - statsStr[4] << "Dexternity: " << (int)char_info->DEX; + statsStr[3] << "Intelligence: " << (int)char_info->INT; + statsStr[4] << "Dexterity: " << (int)char_info->DEX; statsStr[5] << "Luck: " << (int)char_info->LUK; // Update labels |