Seed initial pipeline cache through SDL IO & UTF8 path fixes

This commit is contained in:
Luke Street
2026-05-10 10:39:11 -06:00
parent a86fa9c162
commit 5187fe90c3
5 changed files with 90 additions and 26 deletions
+2 -1
View File
@@ -11,6 +11,7 @@
#include <ranges>
#include "aurora/lib/window.hpp"
#include "dusk/io.hpp"
#include "input.hpp"
#include "prelaunch.hpp"
#include "window.hpp"
@@ -19,7 +20,7 @@ namespace dusk::ui {
namespace {
void load_font(const char* filename, bool fallback = false) {
Rml::LoadFontFace(resource_path(filename).string(), fallback);
Rml::LoadFontFace(io::fs_path_to_string(resource_path(filename)), fallback);
}
bool sInitialized = false;