summaryrefslogtreecommitdiff
path: root/apps/plugins/sdl/progs/quake/mathlib.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/sdl/progs/quake/mathlib.c')
-rw-r--r--apps/plugins/sdl/progs/quake/mathlib.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/apps/plugins/sdl/progs/quake/mathlib.c b/apps/plugins/sdl/progs/quake/mathlib.c
index ddd5435089..a949a39a51 100644
--- a/apps/plugins/sdl/progs/quake/mathlib.c
+++ b/apps/plugins/sdl/progs/quake/mathlib.c
@@ -85,10 +85,6 @@ void PerpendicularVector( vec3_t dst, const vec3_t src )
85 VectorNormalizeNoRet( dst ); 85 VectorNormalizeNoRet( dst );
86} 86}
87 87
88#ifdef _WIN32
89#pragma optimize( "", off )
90#endif
91
92 88
93void RotatePointAroundVector( vec3_t dst, const vec3_t dir, const vec3_t point, float degrees ) 89void RotatePointAroundVector( vec3_t dst, const vec3_t dir, const vec3_t point, float degrees )
94{ 90{
@@ -145,10 +141,6 @@ void RotatePointAroundVector( vec3_t dst, const vec3_t dir, const vec3_t point,
145 } 141 }
146} 142}
147 143
148#ifdef _WIN32
149#pragma optimize( "", on )
150#endif
151
152/*-----------------------------------------------------------------*/ 144/*-----------------------------------------------------------------*/
153 145
154 146