mirror of
https://github.com/DarkStore-3DS/DarkStore.git
synced 2026-07-03 00:39:02 +00:00
See desc for more.
[MAKEFILE]: Properly use PATH for Bannertool and Makerom instead of hardcoded to the root directory on Windows. [QUEUE SYSTEM]: Do not allow going to Home Menu if queue isn't done. Or better said: Show the prompt message with the side effects.
This commit is contained in:
@@ -63,6 +63,7 @@ void QueueSystem::AddToQueue(nlohmann::json obj, const C2D_Image &icn, const std
|
||||
|
||||
svcGetThreadPriority(&prio, CUR_THREAD_HANDLE);
|
||||
queueThread = threadCreate((ThreadFunc)QueueSystem::QueueHandle, NULL, 64 * 1024, prio - 1, -2, false);
|
||||
aptSetHomeAllowed(false);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -84,6 +85,7 @@ void QueueSystem::ClearQueue() {
|
||||
Use this, to go back to the queue after the Request.
|
||||
*/
|
||||
void QueueSystem::Resume() {
|
||||
aptSetHomeAllowed(false);
|
||||
QueueSystem::Wait = false;
|
||||
QueueRuns = true;
|
||||
|
||||
@@ -388,4 +390,6 @@ void QueueSystem::QueueHandle() {
|
||||
ret = NONE; // Reset.
|
||||
}
|
||||
}
|
||||
|
||||
aptSetHomeAllowed(true);
|
||||
}
|
||||
Reference in New Issue
Block a user