fix compilation
This commit is contained in:
parent
2dcf5d7231
commit
a02ae4bc5d
17 changed files with 20 additions and 2 deletions
|
@ -24,6 +24,7 @@
|
|||
*/
|
||||
|
||||
#include "common/scummsys.h"
|
||||
#include "common/textconsole.h"
|
||||
|
||||
#if defined(SDL_BACKEND)
|
||||
|
||||
|
|
|
@ -34,6 +34,7 @@
|
|||
#include "common/mutex.h"
|
||||
#include "common/translation.h"
|
||||
#include "common/util.h"
|
||||
#include "common/textconsole.h"
|
||||
#ifdef USE_RGB_COLOR
|
||||
#include "common/list.h"
|
||||
#endif
|
||||
|
|
|
@ -26,6 +26,8 @@
|
|||
#ifndef GRIM_IMUSE_H
|
||||
#define GRIM_IMUSE_H
|
||||
|
||||
#include "common/mutex.h"
|
||||
|
||||
#include "engines/grim/imuse/imuse_track.h"
|
||||
|
||||
namespace Grim {
|
||||
|
|
|
@ -33,6 +33,7 @@
|
|||
#include "common/list.h"
|
||||
#include "common/debug.h"
|
||||
#include "common/singleton.h"
|
||||
#include "common/textconsole.h"
|
||||
|
||||
namespace Grim {
|
||||
|
||||
|
|
|
@ -27,6 +27,8 @@
|
|||
|
||||
#include "base/commandLine.h"
|
||||
|
||||
#include "common/config-manager.h"
|
||||
|
||||
namespace Grim {
|
||||
|
||||
Registry *g_registry = NULL;
|
||||
|
|
|
@ -25,6 +25,7 @@
|
|||
|
||||
#include "common/endian.h"
|
||||
#include "common/util.h"
|
||||
#include "common/textconsole.h"
|
||||
|
||||
#include "engines/grim/smush/blocky16.h"
|
||||
|
||||
|
|
|
@ -26,6 +26,7 @@
|
|||
|
||||
#include "common/endian.h"
|
||||
#include "common/util.h"
|
||||
#include "common/textconsole.h"
|
||||
|
||||
#include "engines/grim/smush/blocky8.h"
|
||||
|
||||
|
|
|
@ -27,6 +27,7 @@
|
|||
#include "common/timer.h"
|
||||
#include "common/file.h"
|
||||
#include "common/events.h"
|
||||
#include "common/system.h"
|
||||
|
||||
#include "audio/audiostream.h"
|
||||
#include "audio/mixer.h"
|
||||
|
|
|
@ -24,6 +24,7 @@
|
|||
*/
|
||||
|
||||
#include "common/util.h"
|
||||
#include "common/textconsole.h"
|
||||
|
||||
#include "engines/grim/textsplit.h"
|
||||
|
||||
|
|
|
@ -26,6 +26,7 @@
|
|||
#include "common/util.h"
|
||||
#include "common/system.h"
|
||||
#include "common/events.h"
|
||||
#include "common/textconsole.h"
|
||||
|
||||
#include "graphics/surface.h"
|
||||
#include "graphics/colormasks.h"
|
||||
|
|
|
@ -25,6 +25,7 @@
|
|||
#include "common/algorithm.h"
|
||||
#include "common/util.h"
|
||||
#include "common/endian.h"
|
||||
#include "common/textconsole.h"
|
||||
#include "graphics/primitives.h"
|
||||
#include "graphics/surface.h"
|
||||
|
||||
|
|
|
@ -28,6 +28,7 @@
|
|||
#include "common/endian.h"
|
||||
#include "common/system.h"
|
||||
#include "common/stream.h"
|
||||
#include "common/textconsole.h"
|
||||
|
||||
namespace Graphics {
|
||||
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
#define _tgl_zgl_h_
|
||||
|
||||
#include "common/util.h"
|
||||
#include "common/textconsole.h"
|
||||
|
||||
#include "graphics/tinygl/gl.h"
|
||||
#include "graphics/tinygl/zbuffer.h"
|
||||
|
|
|
@ -30,6 +30,7 @@
|
|||
#include "common/hashmap.h"
|
||||
#include "common/hash-str.h"
|
||||
#include "common/stack.h"
|
||||
#include "common/textconsole.h"
|
||||
#include "graphics/font.h"
|
||||
|
||||
#include "gui/ThemeLayout.h"
|
||||
|
|
|
@ -29,6 +29,7 @@
|
|||
#include "common/system.h"
|
||||
#include "common/translation.h"
|
||||
#include "common/util.h"
|
||||
#include "common/textconsole.h"
|
||||
#include "gui/about.h"
|
||||
#include "gui/gui-manager.h"
|
||||
#include "gui/ThemeEval.h"
|
||||
|
|
|
@ -30,6 +30,7 @@
|
|||
#include "base/version.h"
|
||||
|
||||
#include "common/system.h"
|
||||
#include "common/textconsole.h"
|
||||
|
||||
#include "graphics/fontman.h"
|
||||
|
||||
|
|
|
@ -29,7 +29,7 @@
|
|||
#include "common/file.h"
|
||||
#include "common/system.h"
|
||||
|
||||
#include "graphics/palette.h"
|
||||
//#include "graphics/palette.h"
|
||||
|
||||
namespace Video {
|
||||
|
||||
|
@ -53,7 +53,7 @@ uint32 VideoDecoder::getElapsedTime() const {
|
|||
}
|
||||
|
||||
void VideoDecoder::setSystemPalette() {
|
||||
g_system->getPaletteManager()->setPalette(getPalette(), 0, 256);
|
||||
// g_system->getPaletteManager()->setPalette(getPalette(), 0, 256);
|
||||
}
|
||||
|
||||
bool VideoDecoder::needsUpdate() const {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue