1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-21 20:38:45 +00:00
freebsd-ports/games/glasteroids/files/patch-ac

22 lines
456 B
Plaintext

--- Glasteroids.cxx.orig Wed Aug 11 19:48:58 1999
+++ Glasteroids.cxx Sun Aug 6 19:33:33 2000
@@ -1,5 +1,8 @@
#include <stdlib.h>
#include <time.h>
+#ifdef __FreeBSD__
+#include <floatingpoint.h>
+#endif
#include "Bobcat.h"
/*
@@ -75,6 +78,9 @@
{
BCworld *world;
+#if defined(__FreeBSD__) && !defined(__alpha__)
+ fpsetmask(0);
+#endif
world = BCgetWorld ( );
world->InitWorld ( argc, argv,"Glasteroids", 640, 480, 100 );