diff options
Diffstat (limited to 'games/amphetamine/files/patch-ab')
-rw-r--r-- | games/amphetamine/files/patch-ab | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/games/amphetamine/files/patch-ab b/games/amphetamine/files/patch-ab index 94fa208ff509..fe93a29098cc 100644 --- a/games/amphetamine/files/patch-ab +++ b/games/amphetamine/files/patch-ab @@ -1,7 +1,7 @@ --- src/Main.cpp.orig Sun Mar 24 17:49:09 2002 +++ src/Main.cpp Mon Mar 1 19:51:09 2004 @@ -1,3 +1,7 @@ -+#if defined(__FreeBSD__) && ( defined(__i386__) || defined(__amd64__) ) ++#if defined(__FreeBSD__) && defined(__i386__) +#include <floatingpoint.h> +#endif + @@ -12,7 +12,7 @@ my_argv = argv; if (checkCommandLine()) return 0; -+#if defined(__FreeBSD__) && ( defined(__i386__) || defined(__amd64__) ) ++#if defined(__FreeBSD__) && defined(__i386__) + fpsetmask(fpgetmask() & ~(FP_X_DZ|FP_X_INV)); +#endif gApplication = new CApplication(); @@ -22,7 +22,7 @@ gApplication->Quit(); delete gApplication; -+#if defined(__FreeBSD__) && ( defined(__i386__) || defined(__amd64__) ) ++#if defined(__FreeBSD__) && defined(__i386__) + fpresetsticky(FP_X_DZ|FP_X_INV); + fpsetmask(FP_X_DZ|FP_X_INV); +#endif |