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:
@@ -1,4 +1,6 @@
|
|||||||
Changes towards version 0.3:
|
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),
|
- AWARE_OF_SAMATRA flag is now written as well as read (closes #113),
|
||||||
from Nic
|
from Nic
|
||||||
- Subtitle drawing is now cached (closes #313) -Mika
|
- Subtitle drawing is now cached (closes #313) -Mika
|
||||||
|
|||||||
@@ -228,7 +228,7 @@ DateToString (UNICODE *buf, BYTE month_index, BYTE day_index, COUNT
|
|||||||
buf[5] = (UNICODE)((i % 10) + '0');
|
buf[5] = (UNICODE)((i % 10) + '0');
|
||||||
i /= 10;
|
i /= 10;
|
||||||
buf[4] = (UNICODE)((i % 10) + '0');
|
buf[4] = (UNICODE)((i % 10) + '0');
|
||||||
buf[6] = ' ';
|
buf[6] = '_';
|
||||||
|
|
||||||
i = year_index;
|
i = year_index;
|
||||||
buf[10] = (UNICODE)((i % 10) + '0');
|
buf[10] = (UNICODE)((i % 10) + '0');
|
||||||
|
|||||||
Reference in New Issue
Block a user