fix build

This commit is contained in:
Daryl 2020-08-09 14:14:54 -06:00
parent 6e3960cf67
commit 7767843fd3

View File

@ -955,6 +955,16 @@ static void WindowCredits(void * ptr)
* Displays a list of games on the specified load device, and allows the user * Displays a list of games on the specified load device, and allows the user
* to browse and select from this list. * 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() static int MenuGameSelection()
{ {
int menu = MENU_NONE; int menu = MENU_NONE;