aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlejandro Marzini2010-07-03 00:44:05 +0000
committerAlejandro Marzini2010-07-03 00:44:05 +0000
commit86fbe02933a7007bf6cc24bb63eb2b0c705a22ab (patch)
tree06dcd640883b1e48679d60c22a9a320ab39b4b30
parent4e50b23005b1f27d7598b7dc1373a00cd0175e65 (diff)
downloadscummvm-rg350-86fbe02933a7007bf6cc24bb63eb2b0c705a22ab.tar.gz
scummvm-rg350-86fbe02933a7007bf6cc24bb63eb2b0c705a22ab.tar.bz2
scummvm-rg350-86fbe02933a7007bf6cc24bb63eb2b0c705a22ab.zip
Fixed "declared class seen before as struct" warning on MSVC.
svn-id: r50611
-rw-r--r--engines/groovie/script.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/groovie/script.h b/engines/groovie/script.h
index 43b7c06a54..df6c8dfe67 100644
--- a/engines/groovie/script.h
+++ b/engines/groovie/script.h
@@ -30,11 +30,11 @@
#include "common/rect.h"
namespace Common {
-class SeekableReadStream;
+ class SeekableReadStream;
}
namespace Graphics {
-class Surface;
+ struct Surface;
}
namespace Groovie {