2
1
Fork 0
mirror of https://github.com/yuzu-emu/yuzu.git synced 2024-07-04 23:31:19 +01:00

kernel: readable_event: Initialize members.

This commit is contained in:
bunnei 2019-11-03 03:57:16 -05:00
parent bec7e3b7d9
commit 28bb248db6

View file

@ -56,7 +56,7 @@ private:
void Signal();
ResetType reset_type;
bool signaled;
bool signaled{};
std::string name; ///< Name of event (optional)
};