mirror of https://github.com/xemu-project/xemu.git
disable debug flags by default
This commit is contained in:
parent
1a7a9534ab
commit
051a340218
|
@ -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)
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue