JANITORIAL: #include "engine.h" -> "engines/engine.h"

This commit is contained in:
Eugene Sandulenko 2020-05-10 23:45:08 +02:00
parent 1b4ce9096f
commit 7a152e9af4
5 changed files with 6 additions and 6 deletions

View file

@ -103,7 +103,7 @@
#ifdef USE_PROFILER
#include "profiler/cyg-profile.h"
#endif
#include "engine.h"
#include "engines/engine.h"
#include "backends/plugins/ds/ds-provider.h"
#include "backends/fs/ds/ds-fs.h"

View file

@ -24,7 +24,7 @@
#include <pspthreadman.h>
#include "backends/platform/psp/powerman.h"
#include "engine.h"
#include "engines/engine.h"
//#define __PSP_DEBUG_FUNCS__ /* can put this locally too */
//#define __PSP_DEBUG_PRINT__

View file

@ -28,7 +28,7 @@
#endif
#include "common/util.h" // for ARRAYSIZE
#include "common/system.h" // for g_system
#include "engine.h" // for Engine, g_engine
#include "engines/engine.h" // for Engine, g_engine
#include "graphics/colormasks.h" // for createPixelFormat
#include "graphics/palette.h" // for PaletteManager
#include "graphics/transparent_surface.h" // for TransparentSurface
@ -513,7 +513,7 @@ QuickTimePlayer::QuickTimePlayer(EventManager *eventMan) :
void QuickTimePlayer::play(const Common::String& fileName) {
_decoder.reset(new Video::QuickTimeDecoder());
if (!VideoPlayer::open(fileName)) {
_decoder.reset();
return;

View file

@ -36,7 +36,7 @@
#include "common/system.h" // for OSystem, g_system
#include "common/textconsole.h" // for warning
#include "common/types.h" // for Flag::NO
#include "engine.h" // for Engine, g_engine
#include "engines/engine.h" // for Engine, g_engine
#include "sci/console.h" // for Console
#include "sci/engine/features.h" // for GameFeatures
#include "sci/engine/guest_additions.h" // for GuestAdditions

View file

@ -31,7 +31,7 @@
#include "common/str.h"
#include "common/str-array.h"
#include "engine.h"
#include "engines/engine.h"
namespace GUI {