Do not define NDEBUG if _DEBUG is defined

This commit is contained in:
OV2 2017-11-20 00:21:03 +01:00
parent 821f1ed207
commit 3b4801d35a
1 changed files with 1 additions and 1 deletions

View File

@ -5,7 +5,7 @@
#define BLARGG_CONFIG_H
// Uncomment to disable debugging checks
#ifndef DEBUGGER
#if !defined(DEBUGGER) && !defined(_DEBUG)
#define NDEBUG 1
#endif