Add another parameter to the internal "request" framework.

This commit is contained in:
Henrik Rydgård
2024-04-06 12:04:45 +02:00
parent 92a6fbd1d4
commit 616ee81f84
15 changed files with 21 additions and 20 deletions
+1 -1
View File
@@ -1097,7 +1097,7 @@ void System_Notify(SystemNotification notification) {
}
}
bool System_MakeRequest(SystemRequestType type, int requestId, const std::string &param1, const std::string &param2, int param3) {
bool System_MakeRequest(SystemRequestType type, int requestId, const std::string &param1, const std::string &param2, int64_t param3, int64_t param4) {
switch (type) {
case SystemRequestType::EXIT_APP:
PushCommand("finish", "");