about summary refs log tree commit diff
path: root/src/engine/e_map.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/engine/e_map.c')
-rw-r--r--src/engine/e_map.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/engine/e_map.c b/src/engine/e_map.c
index 6dfa4aa6..9f7a910e 100644
--- a/src/engine/e_map.c
+++ b/src/engine/e_map.c
@@ -9,6 +9,11 @@ void *map_get_data(int index)
 	return datafile_get_data(map, index);
 }
 
+void *map_get_data_swapped(int index)
+{
+	return datafile_get_data_swapped(map, index);
+}
+
 void map_unload_data(int index)
 {
 	datafile_unload_data(map, index);