Fixing typo and removing unused led_color enum

This commit is contained in:
Matt Holmes 2025-08-21 18:13:17 +01:00
parent d4f0e188fe
commit cd7e0b51ea
6 changed files with 3 additions and 14 deletions

View file

@ -423,7 +423,7 @@ EMULATOR_STATUS get_emulator_status() {
}
}
const char* get_emulator_staus_string(EMULATOR_STATUS status) {
const char* get_emulator_status_string(EMULATOR_STATUS status) {
// Return the status string but skip "STATUS_" that should always be first
return EMULATOR_STATUS_STRING[status] + 7;
}