bump LUS for thread stuff (#2866)

* bump for threads

* use latest lus main

---------

Co-authored-by: briaguya <briaguya@alice>
This commit is contained in:
briaguya 2023-05-09 23:04:02 -04:00 committed by GitHub
parent 23d40c1ca5
commit b887d38f5f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

@ -1 +1 @@
Subproject commit 26cd6b45e6d9614c0223f238734e70b8b85b1758
Subproject commit 9d83e108a5b15dc2f8631b9dd754308abd798270

View File

@ -761,7 +761,7 @@ void SaveManager::SaveFile(int fileNum) {
// Can't think of any time the promise would be needed, so use push_task instead of submit
auto saveContext = new SaveContext;
memcpy(saveContext, &gSaveContext, sizeof(gSaveContext));
smThreadPool->push_task(&SaveManager::SaveFileThreaded, this, fileNum, saveContext);
smThreadPool->push_task_back(&SaveManager::SaveFileThreaded, this, fileNum, saveContext);
}
void SaveManager::SaveGlobal() {