mirror of
https://github.com/libretro/RetroArch
synced 2025-01-31 15:32:59 +00:00
Fix warning: embedding a directive within macro arguments is not portable (#14859)
This commit is contained in:
parent
3ee14d1dc7
commit
23d54bcec0
@ -202,16 +202,22 @@ MSG_HASH(
|
|||||||
MENU_ENUM_LABEL_AUDIO_DRIVER_WIIU,
|
MENU_ENUM_LABEL_AUDIO_DRIVER_WIIU,
|
||||||
"AX"
|
"AX"
|
||||||
)
|
)
|
||||||
|
#if defined(VITA)
|
||||||
MSG_HASH(
|
MSG_HASH(
|
||||||
MENU_ENUM_LABEL_AUDIO_DRIVER_PSP,
|
MENU_ENUM_LABEL_AUDIO_DRIVER_PSP,
|
||||||
#if defined(VITA)
|
|
||||||
"vita"
|
"vita"
|
||||||
#elif defined(ORBIS)
|
|
||||||
"orbis"
|
|
||||||
#else
|
|
||||||
"psp"
|
|
||||||
#endif
|
|
||||||
)
|
)
|
||||||
|
#elif defined(ORBIS)
|
||||||
|
MSG_HASH(
|
||||||
|
MENU_ENUM_LABEL_AUDIO_DRIVER_PSP,
|
||||||
|
"orbis"
|
||||||
|
)
|
||||||
|
#else
|
||||||
|
MSG_HASH(
|
||||||
|
MENU_ENUM_LABEL_AUDIO_DRIVER_PSP,
|
||||||
|
"psp"
|
||||||
|
)
|
||||||
|
#endif
|
||||||
MSG_HASH(
|
MSG_HASH(
|
||||||
MENU_ENUM_LABEL_AUDIO_DRIVER_PS2,
|
MENU_ENUM_LABEL_AUDIO_DRIVER_PS2,
|
||||||
"ps2"
|
"ps2"
|
||||||
@ -220,14 +226,17 @@ MSG_HASH(
|
|||||||
MENU_ENUM_LABEL_AUDIO_DRIVER_CTR,
|
MENU_ENUM_LABEL_AUDIO_DRIVER_CTR,
|
||||||
"dsp"
|
"dsp"
|
||||||
)
|
)
|
||||||
|
#if defined(HAVE_LIBNX)
|
||||||
MSG_HASH(
|
MSG_HASH(
|
||||||
MENU_ENUM_LABEL_AUDIO_DRIVER_SWITCH,
|
MENU_ENUM_LABEL_AUDIO_DRIVER_SWITCH,
|
||||||
#if defined(HAVE_LIBNX)
|
|
||||||
"switch_audren_thread"
|
"switch_audren_thread"
|
||||||
#else
|
|
||||||
"switch"
|
|
||||||
#endif
|
|
||||||
)
|
)
|
||||||
|
#else
|
||||||
|
MSG_HASH(
|
||||||
|
MENU_ENUM_LABEL_AUDIO_DRIVER_SWITCH,
|
||||||
|
"switch"
|
||||||
|
)
|
||||||
|
#endif
|
||||||
MSG_HASH(
|
MSG_HASH(
|
||||||
MENU_ENUM_LABEL_AUDIO_DRIVER_RWEBAUDIO,
|
MENU_ENUM_LABEL_AUDIO_DRIVER_RWEBAUDIO,
|
||||||
"rwebaudio"
|
"rwebaudio"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user