(Xbox 1/360) Build fix

This commit is contained in:
twinaphex 2012-08-20 15:07:06 +02:00
parent 969a92ac17
commit fb3508564c
4 changed files with 4 additions and 4 deletions

View File

@ -30,7 +30,7 @@ struct platform_bind
uint64_t rarch_default_keybind_lut[RARCH_FIRST_META_KEY];
char rarch_default_libretro_keybind_name_lut[RARCH_FIRST_META_KEY][] = {
char rarch_default_libretro_keybind_name_lut[RARCH_FIRST_META_KEY][32] = {
"RetroPad Button B", /* RETRO_DEVICE_ID_JOYPAD_B */
"RetroPad Button Y", /* RETRO_DEVICE_ID_JOYPAD_Y */
"RetroPad Button Select", /* RETRO_DEVICE_ID_JOYPAD_SELECT */

View File

@ -47,7 +47,7 @@ enum
};
extern uint64_t rarch_default_keybind_lut[RARCH_FIRST_META_KEY];
extern char rarch_default_libretro_keybind_name_lut[RARCH_FIRST_META_KEY][256];
extern char rarch_default_libretro_keybind_name_lut[RARCH_FIRST_META_KEY][32];
const char *rarch_input_find_platform_key_label(uint64_t joykey);

View File

@ -50,7 +50,7 @@ struct aspect_ratio_elem aspectratio_lut[ASPECT_RATIO_END] = {
{ "Custom", 0.0f }
};
char rotation_lut[ASPECT_RATIO_END][] =
char rotation_lut[ASPECT_RATIO_END][32] =
{
"Normal",
"Vertical",

View File

@ -77,7 +77,7 @@ enum rotation
#define LAST_ORIENTATION (ORIENTATION_END-1)
extern char rotation_lut[ASPECT_RATIO_END][PATH_MAX];
extern char rotation_lut[ASPECT_RATIO_END][32];
/* ABGR color format defines */