aboutsummaryrefslogtreecommitdiff
path: root/video
diff options
context:
space:
mode:
authorMatthew Hoops2011-04-06 22:21:49 -0400
committerMatthew Hoops2011-04-06 22:21:49 -0400
commit82a417b40c84416a9c55520ae0e3d5290a1e5553 (patch)
tree94d924bc65dcfcfad10f3dac3348e3fc0c6e4630 /video
parentd7dfbd4b78f594cc303ff4c4d18d039e472299df (diff)
downloadscummvm-rg350-82a417b40c84416a9c55520ae0e3d5290a1e5553.tar.gz
scummvm-rg350-82a417b40c84416a9c55520ae0e3d5290a1e5553.tar.bz2
scummvm-rg350-82a417b40c84416a9c55520ae0e3d5290a1e5553.zip
VIDEO: Fix broken for statement
Diffstat (limited to 'video')
-rw-r--r--video/qt_decoder.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/video/qt_decoder.cpp b/video/qt_decoder.cpp
index 02c3c1373e..c9431fdbd8 100644
--- a/video/qt_decoder.cpp
+++ b/video/qt_decoder.cpp
@@ -603,7 +603,7 @@ int QuickTimeDecoder::readDefault(MOVatom atom) {
uint32 i = 0;
for (; _parseTable[i].type != 0 && _parseTable[i].type != a.type; i++)
- // empty;
+ ; // Empty
if (a.size < 8)
break;