1
0
Fork 0

Fixes to get back support for Voodoo-1/2 cards and the voodoo-in-a-window

hack.
This commit is contained in:
curt 2001-02-02 22:39:13 +00:00
parent a5d1970007
commit d1a50b5667
4 changed files with 15 additions and 4 deletions

View file

@ -69,6 +69,7 @@
#include <Main/fg_io.hxx>
#include <Main/globals.hxx>
#include <Main/fg_props.hxx>
#include <Main/options.hxx>
#ifdef FG_NETWORK_OLK
#include <NetworkOLK/network.h>

View file

@ -71,7 +71,7 @@
#include "globals.hxx"
#include "keyboard.hxx"
#include "fg_props.hxx"
#include "options.hxx"
// From main.cxx
extern void fgReshape( int width, int height );

View file

@ -27,6 +27,11 @@
#include <simgear/compiler.h>
/* normans fix */
#if defined(FX) && defined(XMESA)
bool global_fullscreen = true;
#endif
#include <math.h> // rint()
#include <stdio.h>
#include <stdlib.h> // atof(), atoi()
@ -993,7 +998,7 @@ fgParseOptions (const string& path) {
void
fgUsage ()
{
cout << "Usage: fg [ options ... ]" << endl;
cout << "Usage: fgfs [ options ... ]" << endl;
cout << endl;
cout << "General Options:" << endl;

View file

@ -36,6 +36,11 @@ extern void fgParseOptions (int argc, char ** argv);
extern void fgParseOptions (const string &file_path);
extern void fgUsage ();
/* normans fix */
#if defined(FX) && defined(XMESA)
extern bool global_fullscreen;
#endif
#endif /* _OPTIONS_HXX */