Don't display available resolutions even if DBG is set. Rely only on NDEBUG

svn path=/trunk/; revision=17002
This commit is contained in:
Hervé Poussineau
2005-08-03 14:46:17 +00:00
parent 3f4fb2baec
commit fc64a3b777
+2 -2
View File
@@ -372,10 +372,10 @@ VBEInitialize(PVOID HwDeviceExtension)
VBESortModes(VBEDeviceExtension);
/*
* Print the supported video modes when DBG is set.
* Print the supported video modes when NDEBUG is not set.
*/
#if defined(DBG) && ! defined(NDEBUG)
#ifndef NDEBUG
for (CurrentMode = 0;
CurrentMode < SuitableModeCount;
CurrentMode++)