diff options
author | Eugene Sandulenko | 2016-06-06 20:48:47 +0200 |
---|---|---|
committer | Eugene Sandulenko | 2016-06-06 20:48:47 +0200 |
commit | 637ee8e02f7ce048abb6619c01bc015c27db5306 (patch) | |
tree | c41d5e847cb74f0c8af7a9d18d8d88ef5a377fe9 | |
parent | 9acf6c3838d0aaaf5cff8ea120ec4672cf6fe6c8 (diff) | |
download | scummvm-rg350-637ee8e02f7ce048abb6619c01bc015c27db5306.tar.gz scummvm-rg350-637ee8e02f7ce048abb6619c01bc015c27db5306.tar.bz2 scummvm-rg350-637ee8e02f7ce048abb6619c01bc015c27db5306.zip |
ADL: Fix warnings
-rw-r--r-- | engines/adl/adl.h | 2 | ||||
-rw-r--r-- | engines/adl/graphics.h | 2 | ||||
-rw-r--r-- | engines/adl/hires2.h | 2 | ||||
-rw-r--r-- | engines/adl/hires6.h | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/engines/adl/adl.h b/engines/adl/adl.h index ee9bbb3d82..c9d77fcc62 100644 --- a/engines/adl/adl.h +++ b/engines/adl/adl.h @@ -54,7 +54,7 @@ class Display; class GraphicsMan; class Speaker; struct AdlGameDescription; -struct ScriptEnv; +class ScriptEnv; enum kDebugChannels { kDebugChannelScript = 1 << 0 diff --git a/engines/adl/graphics.h b/engines/adl/graphics.h index 3a300fb0d2..aab807696c 100644 --- a/engines/adl/graphics.h +++ b/engines/adl/graphics.h @@ -25,7 +25,7 @@ namespace Common { class SeekableReadStream; -class Point; +struct Point; } namespace Adl { diff --git a/engines/adl/hires2.h b/engines/adl/hires2.h index 7a0769a807..50016725d6 100644 --- a/engines/adl/hires2.h +++ b/engines/adl/hires2.h @@ -30,7 +30,7 @@ namespace Common { class ReadStream; -class Point; +struct Point; } namespace Adl { diff --git a/engines/adl/hires6.h b/engines/adl/hires6.h index ebd0ce177f..4bd2bcc7cc 100644 --- a/engines/adl/hires6.h +++ b/engines/adl/hires6.h @@ -30,7 +30,7 @@ namespace Common { class ReadStream; -class Point; +struct Point; } namespace Adl { |