mirror of
https://github.com/Ryujinx/SDL.git
synced 2025-03-23 22:15:05 +00:00
Merge commit 'ad0b91302d34336f8af8787fefeeddb553606ec6' into main
This commit is contained in:
commit
f5cbc440e3
|
@ -80,16 +80,20 @@ static const char *SDL_priority_prefixes[SDL_NUM_LOG_PRIORITIES] = {
|
||||||
};
|
};
|
||||||
|
|
||||||
#ifdef __ANDROID__
|
#ifdef __ANDROID__
|
||||||
static const char *SDL_category_prefixes[SDL_LOG_CATEGORY_RESERVED1] = {
|
static const char *SDL_category_prefixes[] = {
|
||||||
"APP",
|
"APP",
|
||||||
"ERROR",
|
"ERROR",
|
||||||
|
"ASSERT",
|
||||||
"SYSTEM",
|
"SYSTEM",
|
||||||
"AUDIO",
|
"AUDIO",
|
||||||
"VIDEO",
|
"VIDEO",
|
||||||
"RENDER",
|
"RENDER",
|
||||||
"INPUT"
|
"INPUT",
|
||||||
|
"TEST"
|
||||||
};
|
};
|
||||||
|
|
||||||
|
SDL_COMPILE_TIME_ASSERT(category_prefixes_enum, SDL_TABLESIZE(SDL_category_prefixes) == SDL_LOG_CATEGORY_RESERVED1);
|
||||||
|
|
||||||
static int SDL_android_priority[SDL_NUM_LOG_PRIORITIES] = {
|
static int SDL_android_priority[SDL_NUM_LOG_PRIORITIES] = {
|
||||||
ANDROID_LOG_UNKNOWN,
|
ANDROID_LOG_UNKNOWN,
|
||||||
ANDROID_LOG_VERBOSE,
|
ANDROID_LOG_VERBOSE,
|
||||||
|
|
Loading…
Reference in a new issue