This commit is contained in:
2025-12-13 22:14:47 -05:00
parent 898dfcc68f
commit 29fc0f3449
3 changed files with 6 additions and 4 deletions
+4 -2
View File
@@ -1,8 +1,10 @@
#include "xml_.h"
#include "filesystem_.h"
#include "math_.h"
using namespace tinyxml2;
namespace filesystem = anm2ed::util::filesystem;
namespace anm2ed::util::xml
{
@@ -25,7 +27,7 @@ namespace anm2ed::util::xml
{
std::string temp{};
auto result = query_string_attribute(element, attribute, &temp);
if (result == XML_SUCCESS) *out = temp;
if (result == XML_SUCCESS) *out = filesystem::path_from_utf8(temp);
return result;
}
@@ -35,4 +37,4 @@ namespace anm2ed::util::xml
element->QueryIntAttribute(attribute, &value);
out = math::uint8_to_float(value);
}
}
}