- Timestamp:
- 05/28/12 10:59:06 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/FACT++/src/smartfact.cc
r13952 r13953 408 408 409 409 bool fSunIsVisible; 410 bool fMoonIsVisible; 410 411 411 412 int fHasError; … … 673 674 674 675 fSunIsVisible = astro.state>=3 && astro.state<=5; 676 fMoonIsVisible = !fSunIsVisible && moon.visible; 675 677 676 678 ofstream(fPath+"/weather.data") << out.str(); … … 1797 1799 } 1798 1800 if (fDimDriveControl.state()==Drive::State::kMoving) 1799 out << " &# 8362;";1801 out << " ⟳"; 1800 1802 out << setprecision(3); 1801 1803 } … … 1804 1806 if (fSunIsVisible) 1805 1807 out << " ☼"; 1808 else 1809 if (fMoonIsVisible) 1810 out << " ☾"; 1806 1811 out << '\n'; 1807 1812
Note:
See TracChangeset
for help on using the changeset viewer.