1
0
Fork 0
mirror of https://github.com/opentx/opentx.git synced 2025-07-26 01:35:21 +03:00
This commit is contained in:
Bertrand Songis 2015-09-11 16:44:17 +02:00
parent 0baad9e393
commit 4854ffa683

View file

@ -336,6 +336,11 @@ void getLogicalSwitchAudioFile(char * filename, int index, unsigned int event)
#if defined(PCBTARANIS)
*str++ = 'L';
if (index >= 10) {
div_t qr = div(index, 10);
*str++ = '1' + qr.quot;
index = qr.rem;
}
*str++ = '1' + index;
#else
int len = STR_VSWITCHES[0];