summaryrefslogtreecommitdiffstats
path: root/src/core
diff options
context:
space:
mode:
Diffstat (limited to 'src/core')
-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 {
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;