diff options
author | flow <flowlnlnln@gmail.com> | 2023-05-28 10:11:43 -0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-28 10:11:43 -0300 |
commit | ce2d58bb7d7e99da61b906253c0fea7815a82862 (patch) | |
tree | f958cd21fee8cba488e82229a1457db368079221 /launcher/tasks/Task.cpp | |
parent | f24211e8b5d9af24ac3e27b0fdb50000a962c35f (diff) | |
parent | 7af116fb006e2eb62429740bd0abbe14f50ff244 (diff) | |
download | PrismLauncher-ce2d58bb7d7e99da61b906253c0fea7815a82862.tar.gz PrismLauncher-ce2d58bb7d7e99da61b906253c0fea7815a82862.tar.bz2 PrismLauncher-ce2d58bb7d7e99da61b906253c0fea7815a82862.zip |
Merge pull request #1083 from Ryex/fix/memory-leaks-develop
Diffstat (limited to 'launcher/tasks/Task.cpp')
-rw-r--r-- | launcher/tasks/Task.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/launcher/tasks/Task.cpp b/launcher/tasks/Task.cpp index b0addd46..29c55cd4 100644 --- a/launcher/tasks/Task.cpp +++ b/launcher/tasks/Task.cpp @@ -109,7 +109,7 @@ void Task::start() return; } } - // NOTE: only fall thorugh to here in end states + // NOTE: only fall through to here in end states m_state = State::Running; emit started(); executeTask(); |