Fix outdated comment

This commit is contained in:
wheremyfoodat
2025-07-02 20:21:56 +03:00
committed by GitHub
parent eb4e7573da
commit 9dcb0a1d47

View File

@@ -28,7 +28,7 @@ bool Kernel::signalEvent(Handle handle) {
Event* event = object->getData<Event>();
event->fired = true;
// One shot events go back to being not fired once they are signaled
// Pulse events go back to being not fired once they are signaled
if (event->resetType == ResetType::Pulse) {
event->fired = false;
}