diff options
Diffstat (limited to 'src/resources/loaders')
-rw-r--r-- | src/resources/loaders/xmlloader.cpp | 4 | ||||
-rw-r--r-- | src/resources/loaders/xmlloader.h | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/resources/loaders/xmlloader.cpp b/src/resources/loaders/xmlloader.cpp index 647b45664..ac005bc06 100644 --- a/src/resources/loaders/xmlloader.cpp +++ b/src/resources/loaders/xmlloader.cpp @@ -35,7 +35,7 @@ namespace A_DEFAULT_COPY(ResourceLoader) const std::string path; - const UseResman useResman; + const UseVirtFs useResman; const SkipError skipError; static Resource *load(const void *const v) @@ -54,7 +54,7 @@ namespace } // namespace XML::Document *Loader::getXml(const std::string &idPath, - const UseResman useResman, + const UseVirtFs useResman, const SkipError skipError) { ResourceLoader rl = { idPath, useResman, skipError }; diff --git a/src/resources/loaders/xmlloader.h b/src/resources/loaders/xmlloader.h index d222f1c17..a52186daa 100644 --- a/src/resources/loaders/xmlloader.h +++ b/src/resources/loaders/xmlloader.h @@ -30,7 +30,7 @@ namespace Loader { XML::Document *getXml(const std::string &idPath, - const UseResman useResman, + const UseVirtFs useResman, const SkipError skipError) A_WARN_UNUSED; } // namespace Loader |