mirror of
https://github.com/cemu-project/Cemu.git
synced 2026-04-09 09:51:29 -06:00
11 lines
258 B
C
11 lines
258 B
C
#pragma once
|
|
|
|
// printf-style macros that are only active in non-release builds
|
|
|
|
#ifndef CEMU_DEBUG_ASSERT
|
|
#define debug_printf(...)
|
|
static void debugBreakpoint() { }
|
|
#else
|
|
#define debug_printf(...) printf(__VA_ARGS__)
|
|
static void debugBreakpoint() {}
|
|
#endif |