diff options
| author | Magnus Auvinen <magnus.auvinen@gmail.com> | 2008-01-13 11:15:32 +0000 |
|---|---|---|
| committer | Magnus Auvinen <magnus.auvinen@gmail.com> | 2008-01-13 11:15:32 +0000 |
| commit | ea245b969d1864441b41d25c7631beccfb39d874 (patch) | |
| tree | 68fb62ef99cdd90f5dd4ec8edf11e7bb54b7f953 /src/engine/e_map.c | |
| parent | 906ece7894927983b8ac69e37dd3cb82cfe7aad1 (diff) | |
| download | zcatch-ea245b969d1864441b41d25c7631beccfb39d874.tar.gz zcatch-ea245b969d1864441b41d25c7631beccfb39d874.zip | |
new mapformat in place. continued the cleanup. some effects are gone, gonna be redone so no biggie. CTF isn't working now.
Diffstat (limited to 'src/engine/e_map.c')
| -rw-r--r-- | src/engine/e_map.c | 5 |
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); |