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