mirror of
https://github.com/zeldaret/ss
synced 2026-08-15 12:58:45 -04:00
15 lines
248 B
C
15 lines
248 B
C
#ifndef RVL_SDK_OS_FATAL_H
|
|
#define RVL_SDK_OS_FATAL_H
|
|
#include <rvl/GX/GXTypes.h>
|
|
#include <rvl/types.h>
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
void OSFatal(GXColor textColor, GXColor bgColor, const char* msg);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
#endif
|