98228699b1
Switch to more recent fork made by Valentin Abramov, it is much improved in calculation (new ephemeris used), have many bugfixes and some new features. Fixes from me: integrate our fixes for original version fix some out of memory / junk memory accesses avoid text clipping on long lines add seconds precision to zone offset (for true local time) add missing color reset in one place
20 lines
804 B
C
20 lines
804 B
C
--- xcharts0.c.bak 2002-05-18 22:28:56.000000000 +0400
|
|
+++ xcharts0.c 2012-02-26 10:00:57.000000000 +0400
|
|
@@ -200,7 +200,7 @@
|
|
SzDate(Mon, Day, Yea, fTrue));
|
|
DrawPrint(sz, gi.kiOn, fFalse);
|
|
DrawPrint(SzTim(Tim), gi.kiOn, fTrue);
|
|
- sprintf(sz, " (%cT %s GMT)", ChDst(Dst), SzZone(Zon));
|
|
+ sprintf(sz, " %cT %s GMT", ChDst(Dst), SzZone(Zon));
|
|
DrawPrint(sz, gi.kiOn, fFalse);
|
|
}
|
|
if (*ciMain.loc && us.nRel != rcMidpoint)
|
|
@@ -278,7 +278,7 @@
|
|
SzDate(Mon, Day, Yea, fTrue));
|
|
DrawPrint(sz, kYellow, fFalse);
|
|
DrawPrint(SzTim(Tim), kYellow, fTrue);
|
|
- sprintf(sz, " (%cT %s GMT)", ChDst(Dst), SzZone(Zon));
|
|
+ sprintf(sz, " %cT %s GMT", ChDst(Dst), SzZone(Zon));
|
|
DrawPrint(sz, kYellow, fFalse);
|
|
if (us.nRel != rcProgress) {
|
|
if (*ciMain.loc)
|