diff --git a/src/mapbuffer.cpp b/src/mapbuffer.cpp index ffd5d933512e9..1b5767266c300 100644 --- a/src/mapbuffer.cpp +++ b/src/mapbuffer.cpp @@ -283,7 +283,7 @@ void mapbuffer::deserialize( JsonIn &jsin ) version = jsin.get_int(); } else if( submap_member_name == "coordinates" ) { jsin.start_array(); - tripoint loc( jsin.get_int(), jsin.get_int(), jsin.get_int() ); + tripoint loc{ jsin.get_int(), jsin.get_int(), jsin.get_int() }; jsin.end_array(); submap_coordinates = loc; } else {