|
From: <lor...@us...> - 2008-11-22 13:48:56
|
Revision: 54
http://deraciel.svn.sourceforge.net/deraciel/?rev=54&view=rev
Author: lordhoto
Date: 2008-11-22 13:48:46 +0000 (Sat, 22 Nov 2008)
Log Message:
-----------
Fixed turn/score output in stat window.
Modified Paths:
--------------
trunk/stat_window.c
Modified: trunk/stat_window.c
===================================================================
--- trunk/stat_window.c 2008-11-22 13:47:48 UTC (rev 53)
+++ trunk/stat_window.c 2008-11-22 13:48:46 UTC (rev 54)
@@ -67,7 +67,7 @@
ch->stats[STAT_WISDOM], ch->stats[STAT_WILLPOWER], ch->stats[STAT_CHARISMA]);
mvwprintw(border_wnd, 2, 2, "%s Xp:%2d/%d T:%d S:%d",
- ch->name, ch->level, ch->experience, ch->score, ch->turns);
+ ch->name, ch->level, ch->experience, ch->turns, ch->score);
wnoutrefresh(border_wnd);
}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|