diff options
Diffstat (limited to 'tools')
| -rwxr-xr-x | tools/songdb.pl | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/songdb.pl b/tools/songdb.pl index 5a3f0e9..659457d 100755 --- a/tools/songdb.pl +++ b/tools/songdb.pl @@ -191,7 +191,8 @@ sub crc32 { my $len = 32*1024; if(!$crc) { - return 1; # fixed bad CRC when disabled! + return 0; # fixed bad CRC when disabled! + # better to set to 0 cause the rundb code will handle it better that way. } if(!open(FILE, "<$filename")) { |