A modern Music Player Daemon based on Rockbox open source high quality audio player
libadwaita audio rust zig deno mpris rockbox mpd

when rom file is too big, mention how many bytes


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

+1 -1
+1 -1
tools/romsizetest.pl
··· 27 27 my $file = filesize($ARGV[1]); 28 28 29 29 if($file > $max ) { 30 - print "Output is larger than max ($max)\n"; 30 + printf "Output is %d bytes larger than max ($max)\n", $file-$max; 31 31 exit 1; 32 32 }