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
This commit is contained in:
gewlitys
2003-05-06 20:49:05 +00:00
parent f3f04c073e
commit d4b948497c
4 changed files with 5 additions and 2 deletions
+3
View File
@@ -1,4 +1,7 @@
Changes towards version 0.3: 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 - The DRAWABLE_DESC datatype now uses separately allocated arrays for
animation frames instead of doing pointer arithmetic between it and animation frames instead of doing pointer arithmetic between it and
FRAME_DESCs --McMartin FRAME_DESCs --McMartin
Binary file not shown.

Before

Width:  |  Height:  |  Size: 219 B

After

Width:  |  Height:  |  Size: 140 B

+1 -1
View File
@@ -854,7 +854,7 @@ ShowSummary (SUMMARY_DESC *pSD)
else if (pSD->Activity == IN_PLANET_ORBIT) else if (pSD->Activity == IN_PLANET_ORBIT)
wstrcpy (buf, GLOBAL_SIS (PlanetName)); wstrcpy (buf, GLOBAL_SIS (PlanetName));
else else
wsprintf (buf, "%03u.%01u:%03u.%01u", wsprintf (buf, "%03u.%01u : %03u.%01u",
r.corner.x / 10, r.corner.x % 10, r.corner.x / 10, r.corner.x % 10,
r.corner.y / 10, r.corner.y % 10); r.corner.y / 10, r.corner.y % 10);
t.CharCount = (COUNT)~0; t.CharCount = (COUNT)~0;
+1 -1
View File
@@ -136,7 +136,7 @@ DrawHyperCoords (POINT universe)
{ {
UNICODE buf[20]; UNICODE buf[20];
wsprintf (buf, "%03u.%01u:%03u.%01u", wsprintf (buf, "%03u.%01u : %03u.%01u",
universe.x / 10, universe.x % 10, universe.x / 10, universe.x % 10,
universe.y / 10, universe.y % 10); universe.y / 10, universe.y % 10);