1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-02-19 18:09:50 +00:00

Handle the "land" soundgen type

This commit is contained in:
Chris Robinson 2013-07-24 10:36:04 -07:00
parent 705498ec24
commit d9a9c3d6bd
2 changed files with 4 additions and 0 deletions

View file

@ -388,6 +388,8 @@ namespace MWClass
return 5;
if(name == "scream")
return 6;
if(name == "land")
return 7;
throw std::runtime_error(std::string("Unexpected soundgen type: ")+name);
}

View file

@ -807,6 +807,8 @@ namespace MWClass
return "";
if(name == "scream")
return "";
if(name == "land")
return "";
throw std::runtime_error(std::string("Unexpected soundgen type: ")+name);
}