Add graphics to EBOOT.PBP output. WARNING!

WARNING:
The PSP SDK "create_pbp_file" CMake function doesn't have support for "ICON1.pmf", even though the tool it uses does. I added in support, but I haven't gotten around to making a PR to merge this into the PSP SDK, so you may run into issues attempting to compile this yourself with a stock version of the PSP SDK.
This commit is contained in:
VoxelTek 2025-06-26 11:23:57 +10:00
parent 415d9bf2e8
commit 90a0b9e2bd

View File

@ -663,9 +663,11 @@ elseif(PSP)
# Create an EBOOT.PBP file
create_pbp_file(
TARGET ${PROJECT_NAME}
ICON_PATH NULL
BACKGROUND_PATH NULL
ICON_PATH "${CMAKE_SOURCE_DIR}/XMB/Game/ICON0.png"
ANIM_PATH "${CMAKE_SOURCE_DIR}/XMB/Game/ICON1.pmf"
BACKGROUND_PATH "${CMAKE_SOURCE_DIR}/XMB/Game/PIC1.png"
PREVIEW_PATH NULL
MUSIC_PATH "${CMAKE_SOURCE_DIR}/XMB/Game/SND0.at3"
TITLE ${PROJECT_NAME}
VERSION 01.00
)