fix build mednafen_psx_hw core

Signed-off-by: Henry Castro <hcvcastro@gmail.com>
This commit is contained in:
Henry Castro 2021-04-24 14:16:22 -04:00
parent da7d5f4d37
commit 2f455a3a41
3 changed files with 10 additions and 1 deletions

View File

@ -103,6 +103,7 @@ include_core_vice_xvic
include_core_vice_xplus4
# --- PlayStation1 emulator cores ---
include_core_mednafen_psx
include_core_mednafen_psx_hw
include_core_pcsx_rearmed
include_core_pcsx1
include_core_pcsx2
@ -286,4 +287,3 @@ include_lutro_tetris
include_lutro_snake
include_lutro_iyfct
include_lutro_game_of_life

View File

@ -233,6 +233,7 @@ build_default_cores() {
# Excluded for performance reasons
libretro_build_core mednafen_pcfx
libretro_build_core mednafen_psx
libretro_build_core mednafen_psx_hw
if [ $platform != "qnx" ]; then
libretro_build_core mednafen_snes
fi

View File

@ -661,6 +661,14 @@ include_core_mednafen_psx() {
libretro_mednafen_psx_name="Mednafen/Beetle PSX"
libretro_mednafen_psx_git_url="https://github.com/libretro/beetle-psx-libretro.git"
include_core_mednafen_psx_hw() {
register_module core "mednafen_psx_hw" -theos_ios -ngc -psp1
}
libretro_mednafen_psx_hw_name="Mednafen/Beetle PSX HW"
libretro_mednafen_psx_hw_git_url="https://github.com/libretro/beetle-psx-libretro.git"
libretro_mednafen_psx_hw_dir=libretro-beetle_psx
libretro_mednafen_psx_hw_build_args="HAVE_HW=1 HAVE_LIGHTREC=1 $libretro_mednafen_psx_hw_build_args"
include_core_mednafen_saturn() {
register_module core "mednafen_saturn" -theos_ios -ngc -psp1
}