From 97c81edf395eb9d7c9d57150b65ab5ac15f8058f Mon Sep 17 00:00:00 2001 From: Stenzek Date: Wed, 9 Apr 2025 13:21:24 +1000 Subject: [PATCH] FullscreenUI: Android build fix --- src/core/fullscreen_ui.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/core/fullscreen_ui.h b/src/core/fullscreen_ui.h index e536a7a87..a1c5c1e4b 100644 --- a/src/core/fullscreen_ui.h +++ b/src/core/fullscreen_ui.h @@ -46,8 +46,7 @@ void UpdateLoadingScreen(std::string_view image, std::string_view message, s32 p void CloseLoadingScreen(); void SetTheme(); - -#ifndef __ANDROID__ +void UpdateRunIdleState(); static constexpr float SHORT_TRANSITION_TIME = 0.08f; static constexpr float DEFAULT_TRANSITION_TIME = 0.15f; @@ -68,6 +67,8 @@ TransitionState GetTransitionState(); GPUTexture* GetTransitionRenderTexture(GPUSwapChain* swap_chain); void RenderTransitionBlend(GPUSwapChain* swap_chain); +#ifndef __ANDROID__ + std::vector GetThemeNames(); std::span GetThemeConfigNames(); @@ -79,7 +80,6 @@ void OpenLeaderboardsWindow(); void ReturnToMainWindow(); void ReturnToPreviousWindow(); void SetStandardSelectionFooterText(bool back_instead_of_cancel); -void UpdateRunIdleState(); class BackgroundProgressCallback final : public ProgressCallback {