2000-04-16 22:03:02 +00:00
|
|
|
--- bb/main.C Thu Sep 2 22:25:19 1999
|
|
|
|
+++ bb/main.C.new Sun Apr 16 17:23:35 2000
|
|
|
|
@@ -11,6 +11,9 @@
|
1999-05-01 02:38:12 +00:00
|
|
|
#include <stdio.h> // to get sprintf()
|
|
|
|
#include <string.h> // to get strncpy()
|
|
|
|
#include <time.h> // to get time(time_t *)
|
|
|
|
+#ifdef __FreeBSD__
|
|
|
|
+#include <floatingpoint.h>
|
|
|
|
+#endif
|
|
|
|
#include "bb.h"
|
2000-04-16 22:03:02 +00:00
|
|
|
#include "bbgfxtarget.h"
|
1999-05-01 02:38:12 +00:00
|
|
|
#include "player.h"
|
2000-04-16 22:03:02 +00:00
|
|
|
@@ -803,6 +806,9 @@
|
|
|
|
/*=========================================================================*/
|
1999-05-01 02:38:12 +00:00
|
|
|
// A long and complicated main() function!
|
|
|
|
main (int argc, char *argv[]) {
|
|
|
|
+#ifdef __FreeBSD__
|
|
|
|
+ fpsetmask(0);
|
|
|
|
+#endif
|
2000-04-16 22:03:02 +00:00
|
|
|
bb= new battleBall(argc,argv);
|
|
|
|
bb->Play();
|
|
|
|
delete bb;
|