From 04c54ee7eb375e8d94a62bfb0b9cea0d75a799c5 Mon Sep 17 00:00:00 2001 From: poljvd Date: Mon, 18 Aug 2014 13:50:19 +0200 Subject: [PATCH] Fix typo error Former-commit-id: 664fc81f7bcfab58ac543f08725992044e51d8db --- include/utils/VideoMode.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/utils/VideoMode.h b/include/utils/VideoMode.h index f5cae94f..ae727657 100644 --- a/include/utils/VideoMode.h +++ b/include/utils/VideoMode.h @@ -18,7 +18,7 @@ inline VideoMode parse3DMode(std::string videoMode) // convert to lower case std::transform(videoMode.begin(), videoMode.end(), videoMode.begin(), ::tolower); - if (videoMode == "23DTAB") + if (videoMode == "3DTAB") { return VIDEO_3DTAB; }