Date on the green bar now has floating period between day and the year

like in PC version (bug #307 part 5) -Mika


git-svn-id: svn://svn.code.sf.net/p/sc2/code/trunk@941 8092fc87-c524-0410-9efc-e669fe64eaf9
This commit is contained in:
gewlitys
2003-04-30 17:43:23 +00:00
parent bb0627b06b
commit 28653646c2
2 changed files with 3 additions and 1 deletions
+2
View File
@@ -1,4 +1,6 @@
Changes towards version 0.3:
- Date on the green bar now has floating period between day and
the year like in PC version (bug #307 part 5) -Mika
- AWARE_OF_SAMATRA flag is now written as well as read (closes #113),
from Nic
- Subtitle drawing is now cached (closes #313) -Mika
+1 -1
View File
@@ -228,7 +228,7 @@ DateToString (UNICODE *buf, BYTE month_index, BYTE day_index, COUNT
buf[5] = (UNICODE)((i % 10) + '0');
i /= 10;
buf[4] = (UNICODE)((i % 10) + '0');
buf[6] = ' ';
buf[6] = '_';
i = year_index;
buf[10] = (UNICODE)((i % 10) + '0');