Files
melonDS/src/dolphin/Log.h
2020-06-16 11:53:11 +02:00

22 lines
317 B
C

#pragma once
#include "CommonFuncs.h"
#include <stdio.h>
#define PanicAlert(fmt, ...) \
do \
{ \
printf(fmt "\n", ## __VA_ARGS__); \
abort(); \
} while (false)
#define DYNA_REC 0
#define ERROR_LOG(which, fmt, ...) \
do \
{ \
printf(fmt "\n", ## __VA_ARGS__); \
} while (false)