early-access version 3184

main
pineappleEA 2022-12-04 22:45:57 +01:00
parent 8016305dd5
commit aa33d0e336
2 changed files with 2 additions and 2 deletions

View File

@ -1,7 +1,7 @@
yuzu emulator early access
=============
This is the source code for early-access 3183.
This is the source code for early-access 3184.
## Legal Notice

View File

@ -183,7 +183,7 @@ ServiceThread::Impl::~Impl() {
}
ServiceThread::Impl::Impl(KernelCore& kernel_, const std::string& service_name)
: kernel{kernel_}, m_service_name{service_name} {
: kernel{kernel_}, m_shutdown_requested{false}, m_service_name{service_name} {
// Initialize event.
m_wakeup_event = KEvent::Create(kernel);
m_wakeup_event->Initialize(nullptr);