mirror of
https://github.com/libretro/RetroArch.git
synced 2024-11-24 00:20:01 +00:00
Implement debug log warning us of not-implemented enums
This commit is contained in:
parent
c14e8ba6ca
commit
00ec3e7846
@ -21,6 +21,7 @@
|
||||
|
||||
#include "../msg_hash.h"
|
||||
#include "../configuration.h"
|
||||
#include "../verbosity.h"
|
||||
|
||||
int menu_hash_get_help_us(uint32_t hash, char *s, size_t len)
|
||||
{
|
||||
@ -3235,6 +3236,9 @@ const char *msg_hash_to_str_us(enum msg_hash_enums msg)
|
||||
case MENU_ENUM_LABEL_VALUE_BASIC_MENU_CONTROLS_TOGGLE_KEYBOARD:
|
||||
return "Toggle Keyboard";
|
||||
default:
|
||||
#if 0
|
||||
RARCH_LOG("Unimplemented: [%d]\n", msg);
|
||||
#endif
|
||||
break;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user