1
0
Fork 0
mirror of https://github.com/OpenMW/openmw.git synced 2025-01-30 16:15:33 +00:00

FIx GCC debug build error

This commit is contained in:
Sam Hellawell 2024-04-27 17:51:28 +01:00
parent b1b2cceec6
commit 4040bd9231
2 changed files with 2 additions and 2 deletions

View file

@ -783,7 +783,7 @@ namespace MWRender
}
else
{
blendRules = mResourceSystem->getAnimBlendRulesManager()->getRules(blendConfigPath);
blendRules = mResourceSystem->getAnimBlendRulesManager()->getRules(blendConfigPath, blendConfigPath);
}
// At this point blendRules will either be nullptr or an AnimBlendRules instance with > 0 rules inside.

View file

@ -21,7 +21,7 @@ namespace Resource
/// Retrieve a read-only keyframe resource by name (case-insensitive).
/// @note Throws an exception if the resource is not found.
osg::ref_ptr<const SceneUtil::AnimBlendRules> getRules(
const VFS::Path::NormalizedView path, const VFS::Path::NormalizedView overridePath = "");
const VFS::Path::NormalizedView path, const VFS::Path::NormalizedView overridePath);
void reportStats(unsigned int frameNumber, osg::Stats* stats) const override;