mirror of
https://github.com/akuker/RASCSI.git
synced 2024-11-22 16:33:17 +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 (rawfile) {
|
||||||
if (size % 2536) {
|
if (size % 2352) {
|
||||||
LogWarn("Raw ISO CD-ROM file size is not a multiple of 2536 bytes but is "
|
LogWarn("Raw ISO CD-ROM file size is not a multiple of 2352 bytes but is "
|
||||||
+ to_string(size) + " bytes");
|
+ to_string(size) + " bytes");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user