Added PSP Accept/Cance

This commit is contained in:
2026-04-17 15:28:03 -05:00
parent 225f405592
commit ff84ce2b04
13 changed files with 89 additions and 6 deletions
+4
View File
@@ -7,6 +7,10 @@
#include "systemlinux.h"
errorret_t systemInitLinux() {
errorOk();
}
systemdialogtype_t systemGetActiveDialogTypeLinux() {
return SYSTEM_DIALOG_TYPE_NONE;
}
+5
View File
@@ -8,6 +8,11 @@
#pragma once
#include "system/system.h"
/**
* Initializes the Linux system module.
*/
errorret_t systemInitLinux(void);
/**
* Currently just returns SYSTEM_DIALOG_TYPE_NONE.
*
+1
View File
@@ -8,4 +8,5 @@
#pragma once
#include "system/systemlinux.h"
#define systemInitPlatform systemInitLinux
#define systemGetActiveDialogTypePlatform systemGetActiveDialogTypeLinux