Fix all-platform validation blockers

This commit is contained in:
2026-06-16 10:26:07 +02:00
parent 4a5bb68fe2
commit 6a9c415d85
9 changed files with 29 additions and 20 deletions

View File

@@ -61,7 +61,7 @@ void App::set_platform_services(pp::platform::PlatformServices* services) noexce
#ifdef __LINUX__
if (services)
{
pp::platform::linux::set_fps_title_callback([this](std::string title) {
pp::platform::linux_desktop::set_fps_title_callback([this](std::string title) {
if (!glfw_window)
return;
@@ -70,7 +70,7 @@ void App::set_platform_services(pp::platform::PlatformServices* services) noexce
}
else
{
pp::platform::linux::set_fps_title_callback({});
pp::platform::linux_desktop::set_fps_title_callback({});
}
#endif
}