mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-04-20 22:05:12 +00:00
Headers cleanup
This commit is contained in:
parent
63147fdede
commit
cd87a64621
361 changed files with 211 additions and 558 deletions
|
|
@ -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;
|
||||
|
|
|
|||
|
|
@ -1,7 +1,6 @@
|
|||
#pragma once
|
||||
#ifdef HAVE_LIBEVDEV
|
||||
|
||||
#include <array>
|
||||
#include <map>
|
||||
#include "Utilities/mutex.h"
|
||||
|
||||
|
|
|
|||
|
|
@ -8,7 +8,6 @@
|
|||
#include "evdev_joystick_handler.h"
|
||||
#include "util/logs.hpp"
|
||||
|
||||
#include <functional>
|
||||
#include <algorithm>
|
||||
#include <unistd.h>
|
||||
#include <fcntl.h>
|
||||
|
|
|
|||
|
|
@ -9,7 +9,6 @@
|
|||
#include <unordered_map>
|
||||
#include <array>
|
||||
#include <vector>
|
||||
#include <thread>
|
||||
#include <ctime>
|
||||
|
||||
struct positive_axis : cfg::node
|
||||
|
|
|
|||
|
|
@ -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"
|
||||
|
|
|
|||
|
|
@ -6,6 +6,8 @@
|
|||
|
||||
#include "hidapi.h"
|
||||
|
||||
#include <mutex>
|
||||
|
||||
struct CalibData
|
||||
{
|
||||
s16 bias = 0;
|
||||
|
|
|
|||
|
|
@ -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"
|
||||
|
||||
|
|
|
|||
|
|
@ -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 = {
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
#pragma once
|
||||
|
||||
#include <vector>
|
||||
#include "Emu/Io/pad_types.h"
|
||||
#include "util/types.hpp"
|
||||
|
||||
namespace input
|
||||
{
|
||||
|
|
|
|||
|
|
@ -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");
|
||||
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -1,5 +1,7 @@
|
|||
#pragma once
|
||||
|
||||
#include "Emu/Cell/Modules/cellGem.h"
|
||||
|
||||
#ifdef HAVE_OPENCV
|
||||
constexpr bool g_ps_move_tracking_supported = true;
|
||||
#else
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue