]> git.sesse.net Git - bmusb/commitdiff
Add a missing PAL mode.
authorSteinar H. Gunderson <sgunderson@bigfoot.com>
Mon, 23 Nov 2015 01:03:17 +0000 (02:03 +0100)
committerSteinar H. Gunderson <sgunderson@bigfoot.com>
Mon, 23 Nov 2015 01:03:17 +0000 (02:03 +0100)
bmusb.cpp

index d083f25371558bdcad6ec0cdcf742dcd84703a4c..29bfeb19c8cdc6f038376662a70fbf5936869a2b 100644 (file)
--- a/bmusb.cpp
+++ b/bmusb.cpp
@@ -1165,7 +1165,7 @@ bool decode_video_format(uint16_t video_format, unsigned *width, unsigned *heigh
        }
 
        // PAL (576i50, I suppose). A special case, see below.
-       if (video_format == 0xe909 || video_format == 0xe9c9) {
+       if (video_format == 0xe909 || video_format == 0xe9c9 || video_format == 0xe809) {
                *width = 720;
                *height = 576;
                *extra_lines_top = 22;