Fix PSP compiled

This commit is contained in:
2025-11-09 20:42:03 -06:00
parent f23e26d9da
commit d6c497731f
10 changed files with 48 additions and 34 deletions

View File

@@ -9,6 +9,7 @@
#include "error.h"
#include "util/memory.h"
#include "util/string.h"
#include "debug/debug.h"
errorret_t errorThrowImpl(
errorstate_t *state,
@@ -120,7 +121,7 @@ errorret_t errorPrint(const errorret_t retval) {
assertNotNull(retval.state, "Error state cannot be NULL");
assertNotNull(retval.state->message, "Message cannot be NULL");
printf(
debugPrint(
ERROR_PRINT_FORMAT,
retval.state->code,
retval.state->message,