Fix wrong warning about CD-ROM image file size

This commit is contained in:
Uwe Seimet 2024-02-19 10:13:09 +01:00
parent d4b8cf306c
commit 198d33dafb
1 changed files with 2 additions and 2 deletions

View File

@ -112,8 +112,8 @@ void SCSICD::OpenIso()
}
if (rawfile) {
if (size % 2536) {
LogWarn("Raw ISO CD-ROM file size is not a multiple of 2536 bytes but is "
if (size % 2352) {
LogWarn("Raw ISO CD-ROM file size is not a multiple of 2352 bytes but is "
+ to_string(size) + " bytes");
}