From 7573856a99ce7e347bb363b68520adfcc343c1f8 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Sun, 19 Sep 2004 01:47:59 +0000 Subject: [PATCH] If the first TryVideoMode fails, log the error, since if one of the fallbacks works, we'll never see the error. --- stepmania/src/RageDisplay.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/stepmania/src/RageDisplay.cpp b/stepmania/src/RageDisplay.cpp index c8a699af8f..8b1f66bf3d 100644 --- a/stepmania/src/RageDisplay.cpp +++ b/stepmania/src/RageDisplay.cpp @@ -53,6 +53,7 @@ bool RageDisplay::SetVideoMode( VideoModeParams p ) err = this->TryVideoMode(p,bNeedReloadTextures); if( err == "" ) return bNeedReloadTextures; + LOG->Trace( "TryVideoMode failed: %s", err.c_str() ); // fall back p.windowed = false;