Browse Source

Event: Fix implementation of "non-sticky" events.

pull/15/merge
bunnei 11 years ago
parent
commit
69c5830ef2
  1. 4
      src/core/hle/kernel/event.cpp

4
src/core/hle/kernel/event.cpp

@ -33,6 +33,10 @@ public:
}
ResultVal<bool> Acquire() override {
// Release the event if it's not sticky...
if (reset_type != RESETTYPE_STICKY)
signaled = false;
return MakeResult<bool>(true);
}
};

Loading…
Cancel
Save