mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
Add missing mutex lock in ScreenManager::RecreateAllViews
This commit is contained in:
parent
c343c194ff
commit
5547fe2107
1 changed files with 1 additions and 0 deletions
|
@ -296,6 +296,7 @@ void ScreenManager::pop() {
|
|||
}
|
||||
|
||||
void ScreenManager::RecreateAllViews() {
|
||||
std::lock_guard<std::recursive_mutex> guard(inputLock_);
|
||||
for (auto it = stack_.begin(); it != stack_.end(); ++it) {
|
||||
it->screen->RecreateViews();
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue