1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-01-19 22:53:50 +00:00

Fixed type cast

This commit is contained in:
Koncord 2016-07-28 20:09:12 +08:00
parent 23a37fc7fc
commit 0549a7a01d

View file

@ -65,7 +65,7 @@ void ScriptFunctions::GetArguments(std::vector<boost::any> &params, va_list args
case 's': case 's':
{ {
params.emplace_back(string(va_arg(args, const char*))); params.emplace_back(va_arg(args, const char*));
break; break;
} }