Headers cleanup

This commit is contained in:
RipleyTom 2025-02-11 03:00:37 +01:00 committed by Megamouse
parent 63147fdede
commit cd87a64621
361 changed files with 211 additions and 558 deletions

View file

@ -2,8 +2,6 @@
#include "ds3_pad_handler.h"
#include "Emu/Io/pad_config.h"
#include "util/asm.hpp"
LOG_CHANNEL(ds3_log, "DS3");
using namespace reports;

View file

@ -1,7 +1,6 @@
#pragma once
#ifdef HAVE_LIBEVDEV
#include <array>
#include <map>
#include "Utilities/mutex.h"

View file

@ -8,7 +8,6 @@
#include "evdev_joystick_handler.h"
#include "util/logs.hpp"
#include <functional>
#include <algorithm>
#include <unistd.h>
#include <fcntl.h>

View file

@ -9,7 +9,6 @@
#include <unordered_map>
#include <array>
#include <vector>
#include <thread>
#include <ctime>
struct positive_axis : cfg::node

View file

@ -14,7 +14,6 @@
#include "sdl_pad_handler.h"
#endif
#include "Emu/Io/PadHandler.h"
#include "Emu/System.h"
#include "Emu/system_config.h"
#include "Utilities/Thread.h"
#include "rpcs3qt/gui_settings.h"

View file

@ -6,6 +6,8 @@
#include "hidapi.h"
#include <mutex>
struct CalibData
{
s16 bias = 0;

View file

@ -26,6 +26,7 @@
#include "Emu/RSX/Overlays/overlay_message.h"
#include "Emu/Cell/lv2/sys_usbd.h"
#include "Emu/Cell/Modules/cellGem.h"
#include "Emu/Cell/timers.hpp"
#include "Utilities/Thread.h"
#include "util/atomic.hpp"

View file

@ -1,5 +1,9 @@
#include "Input/product_info.h"
#include <map>
#include "Emu/Io/pad_types.h"
namespace input
{
static const std::map<product_type, product_info> input_products = {

View file

@ -1,7 +1,7 @@
#pragma once
#include <vector>
#include "Emu/Io/pad_types.h"
#include "util/types.hpp"
namespace input
{

View file

@ -2,10 +2,7 @@
#include "ps_move_handler.h"
#include "ps_move_calibration.h"
#include "Emu/Io/pad_config.h"
#include "Emu/System.h"
#include "Emu/system_config.h"
#include "Emu/Cell/Modules/cellGem.h"
#include "Input/ps_move_config.h"
LOG_CHANNEL(move_log, "Move");

View file

@ -2,15 +2,6 @@
#include "hid_pad_handler.h"
#ifndef _MSC_VER
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wold-style-cast"
#endif
#include "3rdparty/fusion/fusion/Fusion/Fusion.h"
#ifndef _MSC_VER
#pragma GCC diagnostic pop
#endif
#include <unordered_map>
namespace reports

View file

@ -1,5 +1,7 @@
#pragma once
#include "Emu/Cell/Modules/cellGem.h"
#ifdef HAVE_OPENCV
constexpr bool g_ps_move_tracking_supported = true;
#else