summaryrefslogtreecommitdiff
path: root/firmware/sound.c
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/sound.c')
-rw-r--r--firmware/sound.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/firmware/sound.c b/firmware/sound.c
index 51b7c08e13..5d9ca7265b 100644
--- a/firmware/sound.c
+++ b/firmware/sound.c
@@ -196,8 +196,15 @@ int sound_current(int setting)
196#endif /*IF 0*/ 196#endif /*IF 0*/
197 197
198#endif /*ndef BOOTLOADER*/ 198#endif /*ndef BOOTLOADER*/
199#ifdef INT_MIN
199 default: 200 default:
200 return INT_MIN; 201 return INT_MIN;
202#else
203 default:
204 return -32768;
205#endif
206
207
201 } /* switch(setting) */ 208 } /* switch(setting) */
202}/* sound_current */ 209}/* sound_current */
203 210