Expose PSPModule (so the debugger can access it later)

This commit is contained in:
Henrik Rydgård
2025-03-31 09:56:08 +02:00
parent ce87560c95
commit 644f5e4e6c
9 changed files with 342 additions and 315 deletions
+1 -1
View File
@@ -86,7 +86,7 @@ const WaitTypeNames waitTypeNames[] = {
{ WAITTYPE_USB, "USB" },
};
const char *getWaitTypeName(WaitType type) {
const char *WaitTypeToString(WaitType type) {
for (WaitTypeNames info : waitTypeNames) {
if (info.type == type)
return info.name;