Move NDEBUG higher so it actually works and doesn't output all debug messages (fix suggested by hpoussin).

svn path=/trunk/; revision=16902
This commit is contained in:
Aleksey Bragin 2005-07-30 19:06:53 +00:00
parent 2e4f8bfdb1
commit 237b710b56
4 changed files with 8 additions and 4 deletions

View file

@ -11,11 +11,12 @@
* Note: Converted from the XFree vga.bdf font
*/
#define NDEBUG
#include <ddk/ntddk.h>
#include "halxbox.h"
#include <internal/debug.h>
#define NDEBUG
#include <debug.h>
BYTE XboxFont8x16[256 * 16] =

View file

@ -11,12 +11,13 @@
/* INCLUDES *****************************************************************/
#define NDEBUG
#include <ddk/ntddk.h>
#include <hal.h>
#include "halxbox.h"
#include <internal/debug.h>
#define NDEBUG
#include <debug.h>
/* FUNCTIONS ***************************************************************/

View file

@ -11,12 +11,13 @@
/* INCLUDES *****************************************************************/
#define NDEBUG
#include <hal.h>
#include <ddk/ntdddisk.h>
#include "halxbox.h"
#include <internal/debug.h>
#define NDEBUG
#include <debug.h>
#define XBOX_SIGNATURE_SECTOR 3

View file

@ -17,13 +17,14 @@
/* INCLUDES *****************************************************************/
#define NDEBUG
#include <ddk/ntddk.h>
#include <hal.h>
#include <bus.h>
#include "halxbox.h"
#include <internal/debug.h>
#define NDEBUG
#include <debug.h>
/* VARIABLES ***************************************************************/