diff options
-rw-r--r-- | map.c | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -25,8 +25,9 @@ void InitMap(uint log_x, uint log_y) DEBUG(map, 1)("Allocating map of size %dx%d", log_x, log_y); - _map_log_x = log_x; - _map_log_y = log_y; + // XXX - MSVC6 volatile workaround + *(volatile uint*)&_map_log_x = log_x; + *(volatile uint*)&_map_log_y = log_y; map_size = MapSize(); |