1
0
Fork 0
mirror of https://github.com/OpenMW/openmw.git synced 2025-02-05 06:45:34 +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);
}