summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar mailwl2016-11-02 09:38:30 +0300
committerGravatar mailwl2016-11-02 09:38:44 +0300
commitaf7f5bef8d93dec286f6c15c47d29b13d05cfb46 (patch)
tree2785c5c5dff0cdba2043deb817ca61ad173caa6a
parentRename AcConfig, change types u8 to u32 (diff)
downloadyuzu-af7f5bef8d93dec286f6c15c47d29b13d05cfb46.tar.gz
yuzu-af7f5bef8d93dec286f6c15c47d29b13d05cfb46.tar.xz
yuzu-af7f5bef8d93dec286f6c15c47d29b13d05cfb46.zip
Style fix
Diffstat (limited to '')
-rw-r--r--src/core/hle/service/ac_u.cpp4
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 {
15 std::array<u8, 0x200> data; 15 std::array<u8, 0x200> data;
16}; 16};
17 17
18static ACConfig default_config = {}; 18static ACConfig default_config{};
19 19
20static bool ac_connected; 20static bool ac_connected = false;
21 21
22static Kernel::SharedPtr<Kernel::Event> close_event; 22static Kernel::SharedPtr<Kernel::Event> close_event;
23static Kernel::SharedPtr<Kernel::Event> connect_event; 23static Kernel::SharedPtr<Kernel::Event> connect_event;