diff options
author | mailwl <mailwl@gmail.com> | 2016-11-02 07:38:30 +0100 |
---|---|---|
committer | mailwl <mailwl@gmail.com> | 2016-11-02 07:38:44 +0100 |
commit | af7f5bef8d93dec286f6c15c47d29b13d05cfb46 (patch) | |
tree | 2785c5c5dff0cdba2043deb817ca61ad173caa6a /src | |
parent | Rename AcConfig, change types u8 to u32 (diff) | |
download | yuzu-af7f5bef8d93dec286f6c15c47d29b13d05cfb46.tar yuzu-af7f5bef8d93dec286f6c15c47d29b13d05cfb46.tar.gz yuzu-af7f5bef8d93dec286f6c15c47d29b13d05cfb46.tar.bz2 yuzu-af7f5bef8d93dec286f6c15c47d29b13d05cfb46.tar.lz yuzu-af7f5bef8d93dec286f6c15c47d29b13d05cfb46.tar.xz yuzu-af7f5bef8d93dec286f6c15c47d29b13d05cfb46.tar.zst yuzu-af7f5bef8d93dec286f6c15c47d29b13d05cfb46.zip |
Diffstat (limited to 'src')
-rw-r--r-- | src/core/hle/service/ac_u.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/hle/service/ac_u.cpp b/src/core/hle/service/ac_u.cpp index bbf743c2e..18026975f 100644 --- a/src/core/hle/service/ac_u.cpp +++ b/src/core/hle/service/ac_u.cpp @@ -15,9 +15,9 @@ struct ACConfig { std::array<u8, 0x200> data; }; -static ACConfig default_config = {}; +static ACConfig default_config{}; -static bool ac_connected; +static bool ac_connected = false; static Kernel::SharedPtr<Kernel::Event> close_event; static Kernel::SharedPtr<Kernel::Event> connect_event; |