diff --git a/CMakeLists.txt b/CMakeLists.txt index 6fb920b78..19377d4b4 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -528,8 +528,8 @@ set(PAD_LIB src/core/libraries/pad/pad.cpp ) set(SYSTEM_GESTURE_LIB - src/core/libraries/system_gesture/SystemGesture.cpp - src/core/libraries/system_gesture/SystemGesture.h + src/core/libraries/system_gesture/system_gesture.cpp + src/core/libraries/system_gesture/system_gesture.h ) set(PNG_LIB src/core/libraries/libpng/pngdec.cpp diff --git a/src/core/libraries/libs.cpp b/src/core/libraries/libs.cpp index 3929aee02..a047019da 100644 --- a/src/core/libraries/libs.cpp +++ b/src/core/libraries/libs.cpp @@ -55,7 +55,7 @@ #include "core/libraries/system/sysmodule.h" #include "core/libraries/system/systemservice.h" #include "core/libraries/system/userservice.h" -#include "core/libraries/system_gesture/SystemGesture.h" +#include "core/libraries/system_gesture/system_gesture.h" #include "core/libraries/ulobjmgr/ulobjmgr.h" #include "core/libraries/usbd/usbd.h" #include "core/libraries/videodec/videodec.h" diff --git a/src/core/libraries/system_gesture/SystemGesture.cpp b/src/core/libraries/system_gesture/system_gesture.cpp similarity index 99% rename from src/core/libraries/system_gesture/SystemGesture.cpp rename to src/core/libraries/system_gesture/system_gesture.cpp index 5a69a75cc..4415c57dc 100644 --- a/src/core/libraries/system_gesture/SystemGesture.cpp +++ b/src/core/libraries/system_gesture/system_gesture.cpp @@ -1,7 +1,6 @@ // SPDX-FileCopyrightText: Copyright 2025 shadPS4 Emulator Project // SPDX-License-Identifier: GPL-2.0-or-later -#include "SystemGesture.h" #include "common/config.h" #include "common/logging/log.h" #include "common/singleton.h" @@ -9,6 +8,7 @@ #include "core/libraries/pad/pad.h" #include "core/libraries/pad/pad_errors.h" #include "input/controller.h" +#include "system_gesture.h" namespace Libraries::SystemGesture { diff --git a/src/core/libraries/system_gesture/SystemGesture.h b/src/core/libraries/system_gesture/system_gesture.h similarity index 100% rename from src/core/libraries/system_gesture/SystemGesture.h rename to src/core/libraries/system_gesture/system_gesture.h