1
0
Fork 0

Tweaks by Oliver.

This commit is contained in:
curt 1999-06-25 18:15:52 +00:00
parent 8520f46403
commit a540873192
2 changed files with 2 additions and 3 deletions

View file

@ -1,6 +1,5 @@
noinst_LIBRARIES = libNetwork.a
libNetwork_a_SOURCES = \
net_hud.cxx
libNetwork_a_SOURCES = net_hud.cxx net_hud.h network.h
INCLUDES += -I$(top_builddir) -I$(top_builddir)/Lib -I$(top_builddir)/Simulator

View file

@ -74,5 +74,5 @@ void net_hud_update(){
fgd_alt = get_altitude();
sprintf(fgd_str,"Found %s %3.3f %3.3f", fgd_pilot, fgd_lat, fgd_lon);
// printf("Lon: %.3f Lat: %.3f Alt: %.f\n", fgd_lon, fgd_lat, fgd_alt);
HUD_TextList.add( fgText( 40, 18, fgd_str) );
HUD_TextList.add( fgText( 40, 18 ,fgd_str) );
}