From 62d425090e68a7b639d9b6f012265db06595b745 Mon Sep 17 00:00:00 2001 From: Dmugetsu Date: Fri, 14 Feb 2025 19:09:46 -0600 Subject: [PATCH] Hotfix Clang format --- src/emulator.cpp | 4 ++-- src/emulator.h | 7 +++---- src/sdl_window.cpp | 2 +- 3 files changed, 6 insertions(+), 7 deletions(-) diff --git a/src/emulator.cpp b/src/emulator.cpp index 85782aa66..34056cc73 100644 --- a/src/emulator.cpp +++ b/src/emulator.cpp @@ -14,9 +14,9 @@ #include "common/logging/backend.h" #include "common/logging/log.h" #ifdef ENABLE_QT_GUI -#include -#include #include +#include +#include #include "common/memory_patcher.h" #endif #include "common/assert.h" diff --git a/src/emulator.h b/src/emulator.h index 258e5b6b5..0cbebff63 100644 --- a/src/emulator.h +++ b/src/emulator.h @@ -7,11 +7,11 @@ #include #include "common/elf_info.h" +#include #include "common/singleton.h" #include "core/linker.h" #include "input/controller.h" #include "sdl_window.h" -#include namespace Core { @@ -30,12 +30,11 @@ public: void Run(const std::filesystem::path& file, const std::vector args = {}); void UpdatePlayTime(const std::string& serial); static Emulator& GetInstance(); - void StopEmulation(); + void StopEmulation(); bool is_running = false; - void Restart(); + void Restart(); void Shutdown(); - private: void LoadSystemModules(const std::string& game_serial); Common::ElfInfo game_info; diff --git a/src/sdl_window.cpp b/src/sdl_window.cpp index dc86fb296..4bdbcb185 100644 --- a/src/sdl_window.cpp +++ b/src/sdl_window.cpp @@ -2,8 +2,8 @@ // SPDX-License-Identifier: GPL-2.0-or-later #ifdef ENABLE_QT_GUI -#include #include +#include #include "common/memory_patcher.h" #endif #include