From: Václav Slavík Date: Sun, 4 Nov 2001 23:33:19 +0000 (+0000) Subject: fixed stupid bug in display mode error reporting X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/49e885f80715560a88d0f7eccbb497ec8c3c1641 fixed stupid bug in display mode error reporting git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@12322 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/common/appcmn.cpp b/src/common/appcmn.cpp index 37b04e0e86..af586d4f31 100644 --- a/src/common/appcmn.cpp +++ b/src/common/appcmn.cpp @@ -279,12 +279,13 @@ bool wxAppBase::OnCmdLineParsed(wxCmdLineParser& parser) unsigned w, h, bpp; if ( wxSscanf(modeDesc.c_str(), _T("%ux%u-%u"), &w, &h, &bpp) != 3 ) { - wxLogError(_("Unsupported display mode '%s'."), themeName.c_str()); + wxLogError(_("Invalid display mode specification '%s'."), modeDesc.c_str()); return FALSE; } - SetDisplayMode(wxDisplayModeInfo(wxSize(w, h), bpp)); + if ( !SetDisplayMode(wxDisplayModeInfo(wxSize(w, h), bpp)) ) + return FALSE; } #endif