mirror of
https://github.com/melonDS-emu/melonDS.git
synced 2025-07-23 14:19:55 -06:00
22 lines
317 B
C
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)
|