SystemGesture - Rename files to match naming convention (#3403)

This commit is contained in:
DanielSvoboda
2025-08-08 15:51:30 -03:00
committed by GitHub
parent 4ff9d371f6
commit c5aed0873f
4 changed files with 4 additions and 4 deletions

View File

@@ -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

View File

@@ -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"

View File

@@ -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 {