about summary refs log tree commit diff
path: root/src/game/g_mapitems.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/game/g_mapitems.h')
-rw-r--r--src/game/g_mapitems.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/game/g_mapitems.h b/src/game/g_mapitems.h
index 8b4455ec..53561beb 100644
--- a/src/game/g_mapitems.h
+++ b/src/game/g_mapitems.h
@@ -158,9 +158,4 @@ typedef struct
 	int name;
 } MAPITEM_ENVELOPE;
 
-// float to fixed
-inline int f2fx(float v) { return (int)(v*(float)(1<<10)); }
-inline float fx2f(int v) { return v*(1.0f/(1<<10)); }
-
-
 #endif