Merge pull request #1538 from hcvcastro/pr/master/02

fix build mednafen_psx_hw core
This commit is contained in:
Autechre 2021-05-11 17:16:22 +02:00 committed by GitHub
commit 02da44fcbf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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
}