Split Android storage paths from legacy fallback

This commit is contained in:
2026-06-17 10:27:01 +02:00
parent 4bef707c81
commit 5491ed4bf5
9 changed files with 76 additions and 18 deletions

View File

@@ -39,15 +39,6 @@ std::string linux_home_path()
return pw->pw_dir;
}
void linux_update_fps(int frames)
{
static char title_fps[512];
sprintf(title_fps, "PanoPainter - %d fps", frames);
auto* const window = pp::platform::legacy::active_legacy_glfw_window_state().window;
if (window)
glfwSetWindowTitle(window, title_fps);
}
void error_log(int code, const char * s)
{
printf("glfw error: %s", s);