Files
@ r24228:70d8c79f59e1
Branch filter:
Location: cpp/openttd-patchpack/source/src/newgrf.cpp
r24228:70d8c79f59e1
319.6 KiB
text/x-c
Fix #8166: don't crash on loading an invalid roadtype newgrf
Initialization code for GRFFile::roadtype_map was copied from
railtype_map. But while RailType is a byte-sized enum and could thus
be initialized via memset, RoadType doesn't have a defined size.
Initialization code for GRFFile::roadtype_map was copied from
railtype_map. But while RailType is a byte-sized enum and could thus
be initialized via memset, RoadType doesn't have a defined size.