header shuffling

This commit is contained in:
RipleyTom 2019-06-21 13:33:32 +02:00 committed by Megamouse
parent 8debdfcd09
commit 2040a11585
7 changed files with 29 additions and 23 deletions

View file

@ -1,5 +1,6 @@
#include "main_application.h"
#include "pad_thread.h"
#include "Emu/Io/Null/NullPadHandler.h"
#include "Emu/Io/Null/NullKeyboardHandler.h"
#include "Emu/Io/Null/NullMouseHandler.h"
@ -31,6 +32,16 @@
#include "Emu/Audio/Pulse/PulseBackend.h"
#endif
#include "Emu/RSX/GSRender.h"
#include "Emu/RSX/Null/NullGSRender.h"
#include "Emu/RSX/GL/GLGSRender.h"
#ifdef _MSC_VER
#include "Emu/RSX/D3D12/D3D12GSRender.h"
#endif
#if defined(_WIN32) || defined(HAVE_VULKAN)
#include "Emu/RSX/VK/VKGSRender.h"
#endif
/** Emu.Init() wrapper for user manager */
bool main_application::InitializeEmulator(const std::string& user, bool force_init)
{