Preserve more exceptions in Half-Life MDL loader

pull/2904/head
Turo Lamminen 2020-01-16 14:02:04 +02:00
parent 2a366388c2
commit 89e622060b
1 changed files with 2 additions and 2 deletions

View File

@ -175,9 +175,9 @@ void HL1MDLLoader::load_file() {
release_resources();
} catch (const std::exception &e) {
} catch (...) {
release_resources();
throw e;
throw;
}
}