mirror of
https://github.com/libretro/RetroArch
synced 2025-02-06 09:40:06 +00:00
Add some PSL1GHT ifdefs
This commit is contained in:
parent
f19a67cad6
commit
64ecfe4463
@ -14,7 +14,7 @@
|
|||||||
* If not, see <http://www.gnu.org/licenses/>.
|
* If not, see <http://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#if defined(__PSL1GHT__)
|
#if defined(__PSL1GHT__) || defined(__PS3__)
|
||||||
#include "../defines/ps3_defines.h"
|
#include "../defines/ps3_defines.h"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
@ -499,7 +499,7 @@ static const audio_driver_t *audio_drivers[] = {
|
|||||||
#ifdef HAVE_PULSE
|
#ifdef HAVE_PULSE
|
||||||
&audio_pulse,
|
&audio_pulse,
|
||||||
#endif
|
#endif
|
||||||
#ifdef __PSL1GHT__
|
#if defined(__PSL1GHT__) || defined(__PS3__)
|
||||||
&audio_ps3,
|
&audio_ps3,
|
||||||
#endif
|
#endif
|
||||||
#ifdef XENON
|
#ifdef XENON
|
||||||
@ -757,6 +757,9 @@ static const gfx_ctx_driver_t *gfx_ctx_gl_drivers[] = {
|
|||||||
#if defined(HAVE_VITAGL) | defined(HAVE_VITAGLES)
|
#if defined(HAVE_VITAGL) | defined(HAVE_VITAGLES)
|
||||||
&vita_ctx,
|
&vita_ctx,
|
||||||
#endif
|
#endif
|
||||||
|
#if !defined(__PSL1GHT__) && defined(__PS3__)
|
||||||
|
&gfx_ctx_videocore,
|
||||||
|
#endif
|
||||||
#if defined(HAVE_LIBNX) && defined(HAVE_OPENGL)
|
#if defined(HAVE_LIBNX) && defined(HAVE_OPENGL)
|
||||||
&switch_ctx,
|
&switch_ctx,
|
||||||
#endif
|
#endif
|
||||||
@ -855,7 +858,7 @@ static input_driver_t *input_drivers[] = {
|
|||||||
#ifdef ORBIS
|
#ifdef ORBIS
|
||||||
&input_ps4,
|
&input_ps4,
|
||||||
#endif
|
#endif
|
||||||
#ifdef __PSL1GHT__
|
#if defined(__PSL1GHT__) || defined(__PS3__)
|
||||||
&input_ps3,
|
&input_ps3,
|
||||||
#endif
|
#endif
|
||||||
#if defined(SN_TARGET_PSP2) || defined(PSP) || defined(VITA)
|
#if defined(SN_TARGET_PSP2) || defined(PSP) || defined(VITA)
|
||||||
@ -958,6 +961,9 @@ static input_device_driver_t *joypad_drivers[] = {
|
|||||||
#if defined(ORBIS)
|
#if defined(ORBIS)
|
||||||
&ps4_joypad,
|
&ps4_joypad,
|
||||||
#endif
|
#endif
|
||||||
|
#if defined(__PSL1GHT__) || defined(__PS3__)
|
||||||
|
&ps3_joypad,
|
||||||
|
#endif
|
||||||
#if defined(PSP) || defined(VITA)
|
#if defined(PSP) || defined(VITA)
|
||||||
&psp_joypad,
|
&psp_joypad,
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
x
Reference in New Issue
Block a user