From: <av...@us...> - 2009-06-26 20:38:07
|
Revision: 3152 http://sc2.svn.sourceforge.net/sc2/?rev=3152&view=rev Author: avolkov Date: 2009-06-26 20:38:05 +0000 (Fri, 26 Jun 2009) Log Message: ----------- Micro font: moved BULLET char to rightful Unicode spot; restored ASTERISK Modified Paths: -------------- trunk/sc2/src/sc2code/comm.c trunk/sc2/src/sc2code/libs/strlib.h Added Paths: ----------- trunk/sc2/content/base/fonts/player.fon/42.png trunk/sc2/content/base/fonts/player.fon/8226.png Removed Paths: ------------- trunk/sc2/content/base/fonts/player.fon/42.png Deleted: trunk/sc2/content/base/fonts/player.fon/42.png =================================================================== (Binary files differ) Copied: trunk/sc2/content/base/fonts/player.fon/42.png (from rev 2984, trunk/sc2/content/comm/comandr/comandr.fon/42.png) =================================================================== (Binary files differ) Copied: trunk/sc2/content/base/fonts/player.fon/8226.png (from rev 3151, trunk/sc2/content/base/fonts/player.fon/42.png) =================================================================== (Binary files differ) Modified: trunk/sc2/src/sc2code/comm.c =================================================================== --- trunk/sc2/src/sc2code/comm.c 2009-06-26 20:01:56 UTC (rev 3151) +++ trunk/sc2/src/sc2code/comm.c 2009-06-26 20:38:05 UTC (rev 3152) @@ -198,7 +198,7 @@ locText = *pTextIn; locText.baseline.x -= 8; locText.CharCount = (COUNT)~0; - locText.pStr = "*"; + locText.pStr = STR_BULLET; font_DrawText (&locText); locText = *pTextIn; Modified: trunk/sc2/src/sc2code/libs/strlib.h =================================================================== --- trunk/sc2/src/sc2code/libs/strlib.h 2009-06-26 20:01:56 UTC (rev 3151) +++ trunk/sc2/src/sc2code/libs/strlib.h 2009-06-26 20:38:05 UTC (rev 3152) @@ -92,6 +92,8 @@ #define STR_EARTH_SIGN "\xE2\x99\x81" #define WCHAR_MIDDLE_DOT 0x00b7 #define STR_MIDDLE_DOT "\xC2\xB7" +#define WCHAR_BULLET 0x2022 +#define STR_BULLET "\xE2\x80\xA2" #endif /* _STRLIB_H */ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |