diff options
author | mailwl <mailwl@gmail.com> | 2016-11-02 09:38:30 +0300 |
---|---|---|
committer | mailwl <mailwl@gmail.com> | 2016-11-02 09:38:44 +0300 |
commit | af7f5bef8d93dec286f6c15c47d29b13d05cfb46 (patch) | |
tree | 2785c5c5dff0cdba2043deb817ca61ad173caa6a | |
parent | 5872abeab920257cbbd02c58a19440bc8597a1e9 (diff) |
Style fix
-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 bbf743c2ee..18026975f1 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; |