Rockbox open source high quality audio player as a Music Player Daemon
mpris rockbox mpd libadwaita audio rust zig deno
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

Fix the sea of red introduced in bf546fb

Change-Id: Ic158771d8dae6b587e0f567e7a6bb005b5e2ac50

+2 -1
+2 -1
apps/settings.c
··· 311 311 #endif 312 312 if (settings[i].cfg_vals == NULL) 313 313 { 314 + int temp = atoi(value); 314 315 if (settings[i].flags&F_ALLOW_ARBITRARY_VALS || 315 316 (temp >= settings[i].int_setting->min && 316 317 temp <= settings[i].int_setting->max && 317 318 temp % settings[i].int_setting->step == 0)) 318 319 { 319 - *(int*)settings[i].setting = atoi(value); 320 + *(int*)settings[i].setting = temp; 320 321 } 321 322 } 322 323 else