mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-10-05 23:59:05 +00:00
Source: Remove redundant lambda parameter lists
This commit is contained in:
parent
95f6c76713
commit
ca8f9b672b
54 changed files with 108 additions and 111 deletions
|
@ -765,7 +765,7 @@ static void LoadFileStateData(const std::string& filename, Common::UniqueBuffer<
|
|||
if (s_state_writes_in_queue != 0)
|
||||
{
|
||||
if (!s_state_write_queue_is_empty.wait_for(lk, std::chrono::seconds(3),
|
||||
[]() { return s_state_writes_in_queue == 0; }))
|
||||
[] { return s_state_writes_in_queue == 0; }))
|
||||
{
|
||||
Core::DisplayMessage(
|
||||
"A previous state saving operation is still in progress, cancelling load.", 2000);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue