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 broken peakmeters: peakmeter was using viewport drawing code but absolute screen coordinates for display updating. To Do: peakmeter must completely use viewport info for its updates.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17838 a1c6a512-1295-4272-9138-f99709370657

+2 -1
+2 -1
apps/recorder/peakmeter.c
··· 1353 1353 for(i = 0; i < nb_screens; i++) 1354 1354 { 1355 1355 peak_meter_screen(&screens[i], x, y[i], height); 1356 - screens[i].update_rect(x, y[i], screens[i].width - x, height); 1356 + screens[i].update_viewport_rect(x, y[i], 1357 + screens[i].width - x, height); 1357 1358 } 1358 1359 next_refresh += HZ / PEAK_METER_FPS; 1359 1360 dopeek = true;