1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-15 03:14:23 +00:00
freebsd-ports/astro/mymoon/files/patch-grapher.h
Edwin Groothuis 9d6162ed1d Make output nicer by using %02d for time and date fields.
I don't want to scare anybody, but at this moment the moon comes
128 meters per minute closer to the earth.
2005-10-14 10:12:26 +00:00

27 lines
1.0 KiB
C

--- grapher.h.orig Wed Jul 16 21:24:46 2003
+++ grapher.h Fri Oct 14 20:08:52 2005
@@ -13,15 +13,14 @@
for (z=0;z<=progress;z++) {arrow[z]=bar;}for (k=z;k<=max/4;k++) {arrow[k]=empty;}
mvprintw(row/4,0,
-"
- Moon's situation at: %d/%d/%d %d:%d:%d
- Age: +- %d days
- Rise: %d/%d/%d %d:%d:%d
- Set: %d/%d/%d %d:%d:%d
- Illuminated: %.4f%%
- Moon->Earth distance: %.3f Km
- Distance meter: %s (%d%%)
-",
+ "Moon's situation at: %02d/%02d/%02d %02d:%02d:%02d\n"
+ "Age: +- %d days\n"
+ "Rise: %02d/%02d/%02d %02d:%02d:%02d\n"
+ "Set: %02d/%02d/%02d %02d:%02d:%02d\n"
+ "Illuminated: %.4f%% \n"
+ "Moon->Earth distance: %.3f Km\n"
+ "Distance meter: %s (%d%%)\n"
+,
date3.days,date3.months,date3.years,date3.hours,date3.minutes,(int)date3.seconds,(int)age,
date1.days,date1.months,date1.years,date1.hours,date1.minutes,(int)date1.seconds,
date2.days,date2.months,date2.years,date2.hours,date2.minutes,(int)date2.seconds,light,distance,arrow,progress*4);