1
0
Fork 0

(svn r1914) - Fix: [ 1119147 ] Stop startup memory corruption crash using optimized MSVC6. MSVC6 workaround as it's too stupid again for its own good

release/0.4.5
Darkvater 2005-02-26 13:57:40 +00:00
parent e25dd2c2c3
commit 6fd4347c6c
1 changed files with 3 additions and 2 deletions

5
map.c
View File

@ -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();