X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=src%2Fobject%2Fplatform.cpp;h=2575edcf21c368b2303f6e39865e39054e84074e;hb=13e56e5b8d9727128667bb42c3aa4850b4a8dd00;hp=794ff76125e2ac3323fea0a8c06154c2c361a4a3;hpb=045255cdf0a58161b908d769bc0bde1778c33e14;p=supertux.git diff --git a/src/object/platform.cpp b/src/object/platform.cpp index 794ff7612..2575edcf2 100644 --- a/src/object/platform.cpp +++ b/src/object/platform.cpp @@ -133,7 +133,7 @@ void Platform::expose(HSQUIRRELVM vm, SQInteger table_idx) { if (name.empty()) return; - Scripting::Platform* interface = new Scripting::Platform(this); + scripting::Platform* interface = new scripting::Platform(this); expose_object(vm, table_idx, interface, name, true); } @@ -141,7 +141,7 @@ void Platform::unexpose(HSQUIRRELVM vm, SQInteger table_idx) { if (name.empty()) return; - Scripting::unexpose_object(vm, table_idx, name); + scripting::unexpose_object(vm, table_idx, name); } IMPLEMENT_FACTORY(Platform, "platform");