1
0
Fork 0

Ran dos2unix to get rid of extraneous ^M's. Tweaked parameter in

ImageGetRawData() to match usage.
This commit is contained in:
curt 1998-07-24 21:36:55 +00:00
parent ffa2a0feb3
commit 9e301558c9
10 changed files with 39 additions and 31 deletions

View file

@ -53,8 +53,8 @@
#include <Flight/flight.h> #include <Flight/flight.h>
#include <Controls/controls.h> #include <Controls/controls.h>
#include <deque> // STL double ended queue
#include <deque> // STL
#ifdef NEEDNAMESPACESTD #ifdef NEEDNAMESPACESTD
using namespace std; using namespace std;
#endif #endif
@ -523,9 +523,13 @@ void fgHUDSetTimeMode( Hptr hud, int time_of_day );
#endif // _HUD_H #endif // _HUD_H
/* $Log$ /* $Log$
/* Revision 1.10 1998/07/13 21:28:02 curt /* Revision 1.11 1998/07/24 21:36:55 curt
/* Converted the aoa scale to a radio altimeter. /* Ran dos2unix to get rid of extraneous ^M's. Tweaked parameter in
/* ImageGetRawData() to match usage.
/* /*
* Revision 1.10 1998/07/13 21:28:02 curt
* Converted the aoa scale to a radio altimeter.
*
* Revision 1.9 1998/07/13 21:00:48 curt * Revision 1.9 1998/07/13 21:00:48 curt
* Integrated Charlies latest HUD updates. * Integrated Charlies latest HUD updates.
* Wrote access functions for current fgOPTIONS. * Wrote access functions for current fgOPTIONS.

View file

@ -210,7 +210,7 @@ static void ImageGetRow( Image *image, unsigned char *buf, int y, int z)
} }
} }
static void ImageGetRawData( Image *image, char *data) static void ImageGetRawData( Image *image, unsigned char *data)
{ {
int i, j, k; int i, j, k;
int remain; int remain;
@ -416,10 +416,14 @@ void fgPanelUpdate ( void ) {
/* $Log$ /* $Log$
/* Revision 1.3 1998/07/13 21:00:52 curt /* Revision 1.4 1998/07/24 21:37:00 curt
/* Integrated Charlies latest HUD updates. /* Ran dos2unix to get rid of extraneous ^M's. Tweaked parameter in
/* Wrote access functions for current fgOPTIONS. /* ImageGetRawData() to match usage.
/* /*
* Revision 1.3 1998/07/13 21:00:52 curt
* Integrated Charlies latest HUD updates.
* Wrote access functions for current fgOPTIONS.
*
* Revision 1.2 1998/07/03 11:55:37 curt * Revision 1.2 1998/07/03 11:55:37 curt
* A few small rearrangements and tweaks. * A few small rearrangements and tweaks.
* *