SystemGesture - Rename files to match naming convention (#3403)
Some checks are pending
Build and Release / reuse (push) Waiting to run
Build and Release / clang-format (push) Waiting to run
Build and Release / get-info (push) Waiting to run
Build and Release / windows-sdl (push) Blocked by required conditions
Build and Release / windows-qt (push) Blocked by required conditions
Build and Release / macos-sdl (push) Blocked by required conditions
Build and Release / macos-qt (push) Blocked by required conditions
Build and Release / linux-sdl (push) Blocked by required conditions
Build and Release / linux-qt (push) Blocked by required conditions
Build and Release / linux-sdl-gcc (push) Blocked by required conditions
Build and Release / linux-qt-gcc (push) Blocked by required conditions
Build and Release / pre-release (push) Blocked by required conditions

This commit is contained in:
DanielSvoboda 2025-08-08 15:51:30 -03:00 committed by GitHub
parent 4ff9d371f6
commit c5aed0873f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
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 {