Fix Red -- sound_current #_2

Change-Id: Iae31a5fd414708b4a222ba0b05b5828a8e0d19af
This commit is contained in:
William Wilgus 2019-07-25 08:49:11 -05:00
parent b5b43a0fef
commit 3834094172

View file

@ -196,8 +196,15 @@ int sound_current(int setting)
#endif /*IF 0*/
#endif /*ndef BOOTLOADER*/
#ifdef INT_MIN
default:
return INT_MIN;
#else
default:
return -32768;
#endif
} /* switch(setting) */
}/* sound_current */