mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-01 22:05:08 +00:00
e94fcf41dc
X Window System. The goal is simple: Don't get killed. PR: 13267 Submitted by: Andrey Zakhvatov <andy@icc.surw.chel.su>
22 lines
441 B
Plaintext
22 lines
441 B
Plaintext
--- Glasteroids.cxx Thu Aug 12 04:48:58 1999
|
|
+++ /home/andy/tmp/wrk/Glasteroids.cxx Tue Aug 17 15:11:12 1999
|
|
@@ -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;
|
|
|
|
+#ifdef __FreeBSD__
|
|
+ fpsetmask(0);
|
|
+#endif
|
|
world = BCgetWorld ( );
|
|
|
|
world->InitWorld ( argc, argv,"Glasteroids", 640, 480, 100 );
|