change the default disk & cd path, update the paf library

This commit is contained in:
olebeck 2025-09-11 21:20:01 +02:00
parent 849061d8f4
commit 5c8abccbe9
6 changed files with 6 additions and 14 deletions

View File

@ -7,8 +7,8 @@ include("${VITASDK}/share/vita.cmake" REQUIRED)
include(FetchContent)
FetchContent_Declare(
ScePaf_External
URL https://github.com/olebeck/ScePaf/releases/download/v17/ScePaf-1.0.0.zip
URL_HASH SHA256=8547bb98dcba623634e7701fc98172063bd0a77facebfe4932f43c17ff5f4da9
URL https://github.com/olebeck/ScePaf/releases/download/v20/ScePaf-1.0.0.zip
URL_HASH SHA256=e96b917d5f627db62cf173f90785b2bdab7e936f79e0a59ccdf9253b96120dff
UPDATE_DISCONNECTED TRUE
)
FetchContent_MakeAvailable(ScePaf_External)
@ -69,10 +69,6 @@ target_link_libraries(isle-config PRIVATE
iniparser_paf
)
target_include_directories(isle-config PUBLIC
include
)
vita_create_self(isle-config.self isle-config
CONFIG exports.yml
UNSAFE

View File

@ -1,4 +0,0 @@
// clang-format off
#include <stdarg.h>
#include <paf.h>
// clang-format on

View File

@ -1,4 +1,4 @@
#include "pafinc.h"
#include <paf.h>
#include <app_settings.h>
#include <iniparser.h>

View File

@ -1,4 +1,4 @@
#include "pafinc.h"
#include <paf.h>
#include <psp2/kernel/clib.h>
#include <psp2/kernel/modulemgr.h>

View File

@ -7,7 +7,7 @@ void VITA_SetupDefaultConfigOverrides(dictionary* p_dictionary)
{
SDL_Log("Overriding default config for VITA");
iniparser_set(p_dictionary, "isle:diskpath", "ux0:data/isledecomp/isle/DATA/disk");
iniparser_set(p_dictionary, "isle:cdpath", "ux0:data/isledecomp/isle");
iniparser_set(p_dictionary, "isle:diskpath", "ux0:data/isledecomp/isle/disk");
iniparser_set(p_dictionary, "isle:cdpath", "ux0:data/isledecomp/isle/cd");
iniparser_set(p_dictionary, "isle:MSAA", "4");
}