mirror of
https://github.com/akuker/RASCSI.git
synced 2024-11-22 01:31:25 +00:00
Fix wrong warning about CD-ROM image file size
This commit is contained in:
parent
d4b8cf306c
commit
24372ba939
@ -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…
Reference in New Issue
Block a user