RTech: fix return type for 'PakLoadFuncs_s::WaitForAsyncLoad()'

WaitForAsyncLoad() returns a bool; returns false if pak status = PAK_STATUS_ERROR.
This commit is contained in:
Kawe Mazidjatari 2025-01-09 17:03:45 +01:00
parent 6827d1ed02
commit ec9fc7d77f

View File

@ -60,8 +60,8 @@ struct PakLoadFuncs_s
void (*HelpWithPendingRequests)();
// lock and wait for a specific pakfile to load by pakid, and help with other
// allocated jobs in the mean time
void (*WaitForAsyncLoad)(const PakHandle_t handle, void(* const finishCallback));
// allocated jobs in the mean time. returns false if status is PAK_STATUS_ERROR
bool (*WaitForAsyncLoad)(const PakHandle_t handle, void(* const finishCallback));
// lock and wait for a specific pakfile to unload by pakid, and help with other
// allocated jobs in the mean time