Buildfixes

This commit is contained in:
twinaphex 2015-12-06 18:12:40 +01:00
parent 22bded8aad
commit a3033c2f66
5 changed files with 9 additions and 6 deletions

View File

@ -36,7 +36,7 @@
#ifdef IS_SALAMANDER
#include "../../file_ext.h"
#else
#include "../../menu/menu.h"
#include "../../menu/menu_driver.h"
#endif
const char* elf_path_cst = "sdmc:/retroarch/test.3dsx";

View File

@ -50,7 +50,7 @@
#include "../../verbosity.h"
#ifdef HAVE_MENU
#include "../../menu/menu.h"
#include "../../menu/menu_driver.h"
#endif
#if 1

View File

@ -26,7 +26,10 @@
#include "../frontend_driver.h"
#include "../../general.h"
#include "../../verbosity.h"
#include "../../menu/menu.h"
#ifdef HAVE_MENU
#include "../../menu/menu_driver.h"
#endif
/* We only load this library once, so we let it be
* unloaded at application shutdown, since unloading
@ -209,6 +212,7 @@ enum frontend_architecture frontend_win32_get_architecture(void)
static int frontend_win32_parse_drive_list(void *data)
{
#ifdef HAVE_MENU
size_t i = 0;
unsigned drives = GetLogicalDrives();
char drive[] = " :\\";
@ -221,6 +225,7 @@ static int frontend_win32_parse_drive_list(void *data)
menu_entries_push(list,
drive, "", MENU_FILE_DIRECTORY, 0, 0);
}
#endif
return 0;
}

View File

@ -33,7 +33,7 @@
#ifndef IS_SALAMANDER
#include "../../retroarch.h"
#ifdef HAVE_MENU
#include "../../menu/menu.h"
#include "../../menu/menu_driver.h"
#endif
#endif

View File

@ -536,8 +536,6 @@ static bool uninit_video_input(void)
event_command(EVENT_CMD_SHADER_DIR_DEINIT);
video_monitor_compute_fps_statistics();
return true;
}