From f11925ab88cd5881c7e5dd35c40744d95b3eab2d Mon Sep 17 00:00:00 2001 From: Mikaƫl Capelle Date: Sun, 28 Jul 2024 14:39:20 +0200 Subject: Fix FIXABLE status for ModDataChecker. (#2080) * Fix FIXABLE status for ModDataChecker. * Fix issue with registerFeature() without games. --- src/gamefeaturesproxy.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/gamefeaturesproxy.cpp') diff --git a/src/gamefeaturesproxy.cpp b/src/gamefeaturesproxy.cpp index 3adac353..1c833a2f 100644 --- a/src/gamefeaturesproxy.cpp +++ b/src/gamefeaturesproxy.cpp @@ -28,7 +28,7 @@ bool GameFeaturesProxy::registerFeature(MOBase::IPluginGame* game, bool GameFeaturesProxy::registerFeature(std::shared_ptr feature, int priority, bool replace) { - return registerFeature({}, feature, priority, replace); + return registerFeature(QStringList(), feature, priority, replace); } bool GameFeaturesProxy::unregisterFeature(std::shared_ptr feature) -- cgit v1.3.1