diff options
author | Paul Gilbert | 2014-01-01 07:17:29 +1100 |
---|---|---|
committer | Paul Gilbert | 2014-01-01 07:17:29 +1100 |
commit | f153ef4b462c73a6d072b4d82c7e8e673c2183fc (patch) | |
tree | 19cd570ca878114e11c755cc40368606f2f05ab6 /engines | |
parent | 1cdca7cd7f4108418c0b9077a51b491755770fdb (diff) | |
download | scummvm-rg350-f153ef4b462c73a6d072b4d82c7e8e673c2183fc.tar.gz scummvm-rg350-f153ef4b462c73a6d072b4d82c7e8e673c2183fc.tar.bz2 scummvm-rg350-f153ef4b462c73a6d072b4d82c7e8e673c2183fc.zip |
VOYEUR: Fix compiler warning
Diffstat (limited to 'engines')
-rw-r--r-- | engines/voyeur/files.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/voyeur/files.h b/engines/voyeur/files.h index 2d1aa9d29b..0532b7c3d4 100644 --- a/engines/voyeur/files.h +++ b/engines/voyeur/files.h @@ -272,7 +272,7 @@ public: PictureResource(BoltFilesState &state, const byte *src); PictureResource(int flags, int select, int pick, int onOff, int depth, const Common::Rect &bounds, int maskData, byte *imgData, int planeSize); - PictureResource::PictureResource(Graphics::Surface *surface); + PictureResource(Graphics::Surface *surface); PictureResource(); virtual ~PictureResource(); }; |