mirror of https://github.com/OpenTTD/OpenTTD
(svn r1914) - Fix: [ 1119147 ] Stop startup memory corruption crash using optimized MSVC6. MSVC6 workaround as it's too stupid again for its own good
parent
e25dd2c2c3
commit
6fd4347c6c
5
map.c
5
map.c
|
@ -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();
|
||||
|
||||
|
|
Loading…
Reference in New Issue