Browse Source
Merge pull request #3871 from lioncash/semi
readable_event: Remove unnecessary semicolon in Signal()
pull/15/merge
bunnei
6 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
6 additions and
4 deletions
-
src/core/hle/kernel/readable_event.cpp
|
|
|
@ -24,10 +24,12 @@ void ReadableEvent::Acquire(Thread* thread) { |
|
|
|
} |
|
|
|
|
|
|
|
void ReadableEvent::Signal() { |
|
|
|
if (!is_signaled) { |
|
|
|
if (is_signaled) { |
|
|
|
return; |
|
|
|
} |
|
|
|
|
|
|
|
is_signaled = true; |
|
|
|
SynchronizationObject::Signal(); |
|
|
|
}; |
|
|
|
} |
|
|
|
|
|
|
|
void ReadableEvent::Clear() { |
|
|
|
|