1
0
Fork 0

(svn r22122) -Fix/change: when a NOT_REACHED in saveload can be reached due to an invalid savegame, use SlErrorCorrupt instead

release/1.2
rubidium 2011-02-20 20:58:32 +00:00
parent d594a219c6
commit 0eaa2ffa63
1 changed files with 1 additions and 1 deletions

View File

@ -326,7 +326,7 @@ void AfterLoadVehicles(bool part_of_load)
rv->subtype = 0;
rv->SetArticulatedPart();
} else {
NOT_REACHED();
SlErrorCorrupt("Invalid road vehicle subtype");
}
}
}