[Scummvm-cvs-logs] scummvm master -> 637ee8e02f7ce048abb6619c01bc015c27db5306
sev-
sev at scummvm.org
Mon Jun 6 20:49:12 CEST 2016
This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .
Summary:
637ee8e02f ADL: Fix warnings
Commit: 637ee8e02f7ce048abb6619c01bc015c27db5306
https://github.com/scummvm/scummvm/commit/637ee8e02f7ce048abb6619c01bc015c27db5306
Author: Eugene Sandulenko (sev at scummvm.org)
Date: 2016-06-06T20:48:47+02:00
Commit Message:
ADL: Fix warnings
Changed paths:
engines/adl/adl.h
engines/adl/graphics.h
engines/adl/hires2.h
engines/adl/hires6.h
diff --git a/engines/adl/adl.h b/engines/adl/adl.h
index ee9bbb3..c9d77fc 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 3a300fb..aab8076 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 7a0769a..5001672 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 ebd0ce1..4bd2bcc 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 {
More information about the Scummvm-git-logs
mailing list