From d4b948497c5ba558d91d7ebbaad977f1d75db09f Mon Sep 17 00:00:00 2001 From: gewlitys Date: Tue, 6 May 2003 20:49:05 +0000 Subject: [PATCH] There's now space before and after : in star coordinates (bug #307 part 6), from Paxtez; also the coordinates no longer shimmy (bug #331), from chmmravatar git-svn-id: svn://svn.code.sf.net/p/sc2/code/trunk@947 8092fc87-c524-0410-9efc-e669fe64eaf9 --- sc2/ChangeLog | 3 +++ sc2/content/lbm/tiny.fon/49.png | Bin 219 -> 140 bytes sc2/src/sc2code/gameopt.c | 2 +- sc2/src/sc2code/sis.c | 2 +- 4 files changed, 5 insertions(+), 2 deletions(-) diff --git a/sc2/ChangeLog b/sc2/ChangeLog index 88f4a91e7..0478bc2f1 100644 --- a/sc2/ChangeLog +++ b/sc2/ChangeLog @@ -1,4 +1,7 @@ Changes towards version 0.3: +- There's now space before and after : in coordinates (bug #307 part 6), + from Paxtez +- Star coordinates no longer shimmy (bug #331), from chmmravatar - The DRAWABLE_DESC datatype now uses separately allocated arrays for animation frames instead of doing pointer arithmetic between it and FRAME_DESCs --McMartin diff --git a/sc2/content/lbm/tiny.fon/49.png b/sc2/content/lbm/tiny.fon/49.png index 63ffca892b28bfd60ad4ce77b436fbb8611457b1..84f13da999cc31ea6530c6488b1595c73f581ceb 100755 GIT binary patch literal 140 zcmeAS@N?(olHy`uVBq!ia0vp^EI`b`!3HGn8ON~#DfSXiUsv|atc>iM44K+Xqkux3 z1s;*b3=DFIK$tP_La7~4kR{#G*O7r?V?XzwM36pdPZ!6Kid)GE3Q~XAnFP+ZoH@9b gNz&la6((kepRf79omJ;|0xDzhboFyt=akR{0LTF%-2eap literal 219 zcmeAS@N?(olHy`uVBq!ia0vp^%s|Y+!3HF4-n-TSDf<%Fh!XeIywsw^lGGH1q)G;4 zjzURBs)9>uS!zyxL28kDv4UrAVtT5APi9h4Vo{}n22je=N7L?S^hcmkd?2G7OG`5H zK`QeSb5j|Xhm;=%$_SyzBbP0l+XkK8-hjX diff --git a/sc2/src/sc2code/gameopt.c b/sc2/src/sc2code/gameopt.c index 51489f04a..ae33c221e 100644 --- a/sc2/src/sc2code/gameopt.c +++ b/sc2/src/sc2code/gameopt.c @@ -854,7 +854,7 @@ ShowSummary (SUMMARY_DESC *pSD) else if (pSD->Activity == IN_PLANET_ORBIT) wstrcpy (buf, GLOBAL_SIS (PlanetName)); else - wsprintf (buf, "%03u.%01u:%03u.%01u", + wsprintf (buf, "%03u.%01u : %03u.%01u", r.corner.x / 10, r.corner.x % 10, r.corner.y / 10, r.corner.y % 10); t.CharCount = (COUNT)~0; diff --git a/sc2/src/sc2code/sis.c b/sc2/src/sc2code/sis.c index 4e4355d28..2b706571f 100644 --- a/sc2/src/sc2code/sis.c +++ b/sc2/src/sc2code/sis.c @@ -136,7 +136,7 @@ DrawHyperCoords (POINT universe) { UNICODE buf[20]; - wsprintf (buf, "%03u.%01u:%03u.%01u", + wsprintf (buf, "%03u.%01u : %03u.%01u", universe.x / 10, universe.x % 10, universe.y / 10, universe.y % 10);