mirror of
https://github.com/zeldaret/ss
synced 2026-06-03 18:36:16 -04:00
15 lines
245 B
C
15 lines
245 B
C
#ifndef RVL_SDK_OS_FATAL_H
|
|
#define RVL_SDK_OS_FATAL_H
|
|
#include "rvl/GX/GXTypes.h"
|
|
#include <common.h>
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
void OSFatal(GXColor textColor, GXColor bgColor, const char *msg);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
#endif
|