Ran dos2unix to get rid of extraneous ^M's. Tweaked parameter in
ImageGetRawData() to match usage.
This commit is contained in:
parent
ffa2a0feb3
commit
9e301558c9
10 changed files with 39 additions and 31 deletions
|
@ -53,8 +53,8 @@
|
|||
#include <Flight/flight.h>
|
||||
#include <Controls/controls.h>
|
||||
|
||||
#include <deque> // STL double ended queue
|
||||
|
||||
#include <deque> // STL
|
||||
#ifdef NEEDNAMESPACESTD
|
||||
using namespace std;
|
||||
#endif
|
||||
|
@ -523,9 +523,13 @@ void fgHUDSetTimeMode( Hptr hud, int time_of_day );
|
|||
#endif // _HUD_H
|
||||
|
||||
/* $Log$
|
||||
/* Revision 1.10 1998/07/13 21:28:02 curt
|
||||
/* Converted the aoa scale to a radio altimeter.
|
||||
/* Revision 1.11 1998/07/24 21:36:55 curt
|
||||
/* 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
|
||||
* Integrated Charlies latest HUD updates.
|
||||
* Wrote access functions for current fgOPTIONS.
|
||||
|
|
|
@ -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 remain;
|
||||
|
@ -416,10 +416,14 @@ void fgPanelUpdate ( void ) {
|
|||
|
||||
|
||||
/* $Log$
|
||||
/* Revision 1.3 1998/07/13 21:00:52 curt
|
||||
/* Integrated Charlies latest HUD updates.
|
||||
/* Wrote access functions for current fgOPTIONS.
|
||||
/* Revision 1.4 1998/07/24 21:37:00 curt
|
||||
/* Ran dos2unix to get rid of extraneous ^M's. Tweaked parameter in
|
||||
/* 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
|
||||
* A few small rearrangements and tweaks.
|
||||
*
|
||||
|
|
Loading…
Reference in a new issue