diff --git a/src/video.cpp b/src/video.cpp index 418e5933e..07b7b0756 100644 --- a/src/video.cpp +++ b/src/video.cpp @@ -350,6 +350,7 @@ struct video_desc get_video_desc_from_string(const char *string) ret.height = 2160; } if (ret.width == 0) { + MSG(ERROR, "Unrecognized video mode: %s\n", string); return {}; } ret.fps = parse_fps(string, ret.interlacing == INTERLACED_MERGED);