From 49767bb373f7b76cb7befa0af65e165d6732619a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?William=20B=C3=A9rub=C3=A9?= Date: Wed, 18 Sep 2024 21:48:11 -0400 Subject: [PATCH] Leftover break instruction that rendered T31s unusable --- src/hal/support.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/hal/support.c b/src/hal/support.c index 837f380..fccf74c 100644 --- a/src/hal/support.c +++ b/src/hal/support.c @@ -223,7 +223,7 @@ void hal_identify(void) { case 0xeeee: sprintf(chip, "T31LC"); break; default: sprintf(chip, "T31N"); break; } - strcpy(family, "ingenic t31"); break; + strcpy(family, "ingenic t31"); chnCount = T31_VENC_CHN_NUM; chnState = (hal_chnstate*)t31_state; aud_thread = t31_audio_thread;