disable debug flags by default

This commit is contained in:
espes 2015-08-10 15:05:13 -07:00
parent 1a7a9534ab
commit 051a340218
3 changed files with 5 additions and 5 deletions

View File

@ -126,8 +126,8 @@ static const struct {
#define DEBUG
#ifdef DEBUG
// #define MCPX_DEBUG
#ifdef MCPX_DEBUG
# define MCPX_DPRINTF(format, ...) printf(format, ## __VA_ARGS__)
#else
# define MCPX_DPRINTF(format, ...) do { } while (0)

View File

@ -37,7 +37,7 @@
#include "hw/xbox/nv2a.h"
#define DEBUG_NV2A
// #define DEBUG_NV2A
#ifdef DEBUG_NV2A
# define NV2A_DPRINTF(format, ...) printf("nv2a: " format, ## __VA_ARGS__)
#else

View File

@ -22,8 +22,8 @@
#include "hw/xbox/nv2a_shaders_common.h"
#include "hw/xbox/nv2a_shaders.h"
#define DEBUG
#ifdef DEBUG
// #define NV2A_DEBUG
#ifdef NV2A_DEBUG
# define NV2A_DPRINTF(format, ...) printf("nv2a: " format, ## __VA_ARGS__)
#else
# define NV2A_DPRINTF(format, ...) do { } while (0)