diff options
author | Ori Avtalion | 2011-05-01 18:47:29 +0300 |
---|---|---|
committer | Ori Avtalion | 2011-05-01 18:48:42 +0300 |
commit | a896125ee40725cd3f98a0fc8b33f20c590c7c18 (patch) | |
tree | fd98b294792cd995d1ebef0ca48f617ed68d179b /video | |
parent | 71bdb86e028db9556611f88b3686ce93312a8131 (diff) | |
download | scummvm-rg350-a896125ee40725cd3f98a0fc8b33f20c590c7c18.tar.gz scummvm-rg350-a896125ee40725cd3f98a0fc8b33f20c590c7c18.tar.bz2 scummvm-rg350-a896125ee40725cd3f98a0fc8b33f20c590c7c18.zip |
VIDEO: Fix flic decoder not including rect.h which is used inline
Diffstat (limited to 'video')
-rw-r--r-- | video/flic_decoder.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/video/flic_decoder.h b/video/flic_decoder.h index 42e7863fc6..4ca8615de1 100644 --- a/video/flic_decoder.h +++ b/video/flic_decoder.h @@ -29,11 +29,11 @@ #include "video/video_decoder.h" #include "common/list.h" #include "common/rational.h" +#include "common/rect.h" #include "graphics/pixelformat.h" #include "graphics/surface.h" namespace Common { -struct Rect; class SeekableReadStream; } |