mirror of
https://github.com/akuker/RASCSI.git
synced 2025-02-20 00:29:18 +00:00
Fix wrong warning about CD-ROM image file size
This commit is contained in:
parent
b784c85728
commit
a2487302db
@ -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");
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user