mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-15 23:08:51 +00:00
Convert all includes to relative paths.
This commit is contained in:
parent
73691a8587
commit
2afe215271
893 changed files with 4628 additions and 4957 deletions
|
@ -2,40 +2,40 @@
|
|||
// Licensed under GPLv2
|
||||
// Refer to the license.txt file included.
|
||||
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <stdarg.h>
|
||||
#include <cstdio>
|
||||
#include <cstdlib>
|
||||
#include <cstdarg>
|
||||
#include <getopt.h>
|
||||
|
||||
#include "Common.h"
|
||||
#include "FileUtil.h"
|
||||
#include "Common/Common.h"
|
||||
#include "Common/CPUDetect.h"
|
||||
#include "Common/FileUtil.h"
|
||||
#include "Common/LogManager.h"
|
||||
#include "Common/Thread.h"
|
||||
|
||||
#if HAVE_X11
|
||||
#include <X11/keysym.h>
|
||||
#include "State.h"
|
||||
#include "X11Utils.h"
|
||||
#include "Core/State.h"
|
||||
#include "DolphinWX/X11Utils.h"
|
||||
#endif
|
||||
|
||||
#if HAVE_WAYLAND
|
||||
#include <wayland-client.h>
|
||||
#include "GLInterface/GLInterface.h"
|
||||
#include "DolphinWX/GLInterface/GLInterface.h"
|
||||
#endif
|
||||
|
||||
#ifdef __APPLE__
|
||||
#import <Cocoa/Cocoa.h>
|
||||
#endif
|
||||
|
||||
#include "Core.h"
|
||||
#include "Host.h"
|
||||
#include "CPUDetect.h"
|
||||
#include "Thread.h"
|
||||
#include "PowerPC/PowerPC.h"
|
||||
#include "HW/Wiimote.h"
|
||||
#include "Core/BootManager.h"
|
||||
#include "Core/ConfigManager.h"
|
||||
#include "Core/Core.h"
|
||||
#include "Core/Host.h"
|
||||
#include "Core/HW/Wiimote.h"
|
||||
#include "Core/PowerPC/PowerPC.h"
|
||||
|
||||
#include "VideoBackendBase.h"
|
||||
#include "ConfigManager.h"
|
||||
#include "LogManager.h"
|
||||
#include "BootManager.h"
|
||||
#include "VideoCommon/VideoBackendBase.h"
|
||||
|
||||
bool rendererHasFocus = true;
|
||||
bool running = true;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue