mirror of
https://github.com/OpenMW/openmw.git
synced 2025-01-30 15:45:33 +00:00
FIx GCC debug build error
This commit is contained in:
parent
b1b2cceec6
commit
4040bd9231
2 changed files with 2 additions and 2 deletions
|
@ -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.
|
||||
|
|
|
@ -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;
|
||||
|
||||
|
|
Loading…
Reference in a new issue