early-access version 1604

This commit is contained in:
pineappleEA
2021-04-15 04:05:28 +02:00
parent 11641be04e
commit bd8df24a11
121 changed files with 967 additions and 131 deletions

View File

@@ -9,8 +9,6 @@ add_library(input_common STATIC
motion_from_button.h
motion_input.cpp
motion_input.h
settings.cpp
settings.h
touch_from_button.cpp
touch_from_button.h
gcadapter/gc_adapter.cpp

View File

@@ -7,7 +7,7 @@
#include <cmath>
#include <thread>
#include "common/math_util.h"
#include "core/settings.h"
#include "common/settings.h"
#include "input_common/analog_from_button.h"
namespace InputCommon {

View File

@@ -16,8 +16,8 @@
#include "common/logging/log.h"
#include "common/param_package.h"
#include "common/settings_input.h"
#include "input_common/gcadapter/gc_adapter.h"
#include "input_common/settings.h"
namespace GCAdapter {

View File

@@ -2,7 +2,7 @@
// Licensed under GPLv2+
// Refer to the license.txt file included.
#include "core/settings.h"
#include "common/settings.h"
#include "input_common/mouse/mouse_input.h"
namespace MouseInput {

View File

@@ -5,8 +5,8 @@
#include <mutex>
#include <utility>
#include "common/settings.h"
#include "common/threadsafe_queue.h"
#include "core/settings.h"
#include "input_common/mouse/mouse_input.h"
#include "input_common/mouse/mouse_poller.h"

View File

@@ -20,11 +20,11 @@
#include <SDL.h>
#include "common/logging/log.h"
#include "common/param_package.h"
#include "common/settings_input.h"
#include "common/threadsafe_queue.h"
#include "core/frontend/input.h"
#include "input_common/motion_input.h"
#include "input_common/sdl/sdl_impl.h"
#include "input_common/settings.h"
namespace InputCommon::SDL {

View File

@@ -2,8 +2,8 @@
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.
#include "common/settings.h"
#include "core/frontend/framebuffer_layout.h"
#include "core/settings.h"
#include "input_common/touch_from_button.h"
namespace InputCommon {

View File

@@ -9,7 +9,7 @@
#include <thread>
#include <boost/asio.hpp>
#include "common/logging/log.h"
#include "core/settings.h"
#include "common/settings.h"
#include "input_common/udp/client.h"
#include "input_common/udp/protocol.h"