From 7767843fd3cab89e5734e53e28cd14be5faaa04f Mon Sep 17 00:00:00 2001 From: Daryl Date: Sun, 9 Aug 2020 14:14:54 -0600 Subject: [PATCH] fix build --- source/menu.cpp | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/source/menu.cpp b/source/menu.cpp index 112527b..5ce7900 100644 --- a/source/menu.cpp +++ b/source/menu.cpp @@ -955,6 +955,16 @@ static void WindowCredits(void * ptr) * Displays a list of games on the specified load device, and allows the user * to browse and select from this list. ***************************************************************************/ +static char* getImageFolder() +{ + switch(GCSettings.PreviewImage) + { + case 1 : return GCSettings.CoverFolder; break; + case 2 : return GCSettings.ArtworkFolder; break; + default: return GCSettings.ScreenshotsFolder; break; + } +} + static int MenuGameSelection() { int menu = MENU_NONE;