diff --git a/src/runner/pythonrunner.cpp b/src/runner/pythonrunner.cpp index b4cd29a..e85d23b 100644 --- a/src/runner/pythonrunner.cpp +++ b/src/runner/pythonrunner.cpp @@ -706,7 +706,7 @@ BOOST_PYTHON_MODULE(mobase) bpy::class_("PluginSetting", bpy::init()); bpy::class_("GameInfo") - .def("type", bpy::pure_virtual(&IGameInfo::type)) +// .def("type", bpy::pure_virtual(&IGameInfo::type)) // .def("path", bpy::pure_virtual(&IGameInfo::path)) // .def("binaryName", bpy::pure_virtual(&IGameInfo::binaryName)) ; diff --git a/src/runner/uibasewrappers.h b/src/runner/uibasewrappers.h index b17ea0b..92b7786 100644 --- a/src/runner/uibasewrappers.h +++ b/src/runner/uibasewrappers.h @@ -260,7 +260,7 @@ struct IInstallationManagerWrapper: MOBase::IInstallationManager, boost::python: struct IGameInfoWrapper: MOBase::IGameInfo, boost::python::wrapper { - virtual Type type() const { return this->get_override("type")(); } +// virtual Type type() const { return this->get_override("type")(); } // virtual QString path() const { return this->get_override("path")(); } // virtual QString binaryName() const { return this->get_override("binaryName")(); } };