Buildfixes
This commit is contained in:
parent
0bb10b891b
commit
fda9b01ab3
|
@ -27,7 +27,11 @@
|
||||||
|
|
||||||
#include <stdint.h>
|
#include <stdint.h>
|
||||||
#include <stddef.h>
|
#include <stddef.h>
|
||||||
|
#ifdef _WIN32
|
||||||
|
#include <direct.h>
|
||||||
|
#else
|
||||||
#include <unistd.h>
|
#include <unistd.h>
|
||||||
|
#endif
|
||||||
|
|
||||||
#include <formats/rwav.h>
|
#include <formats/rwav.h>
|
||||||
#include <audio/audio_resampler.h>
|
#include <audio/audio_resampler.h>
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
#if defined(_WIN32) && defined(_MSC_VER) && !defined(_XBOX)
|
#if defined(_WIN32) && defined(_MSC_VER) && !defined(_XBOX)
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
/* RetroArch - A frontend for libretro.
|
/* RetroArch - A frontend for libretro.
|
||||||
|
@ -44,7 +44,7 @@
|
||||||
#include "../configuration.h"
|
#include "../configuration.h"
|
||||||
#include "../runloop.h"
|
#include "../runloop.h"
|
||||||
|
|
||||||
static unsigned char menu_keyboard_key_state[RETROK_LAST];
|
static unsigned char menu_keyboard_key_state[RETROK_LAST] = {0};
|
||||||
|
|
||||||
static int menu_event_pointer(unsigned *action)
|
static int menu_event_pointer(unsigned *action)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue