Various fixes to the IMD loader - 5.25" 2DD IMD images now work correctly in thin track drives;

A slight fix to TD0 loading;
Ported the small gameport bugfix from VARCem;
Disabled CD-ROM logging.
This commit is contained in:
OBattler
2018-03-19 02:35:11 +01:00
parent d2b5bf9200
commit 895e30bb37
4 changed files with 41 additions and 22 deletions

View File

@@ -8,7 +8,7 @@
*
* Implementation of the Teledisk floppy image format.
*
* Version: @(#)fdd_td0.c 1.0.4 2018/03/17
* Version: @(#)fdd_td0.c 1.0.5 2018/03/19
*
* Authors: Fred N. van Kempen, <decwiz@yahoo.com>
* Miran Grca, <mgrca8@gmail.com>
@@ -784,7 +784,8 @@ td0_initialize(int drive)
track_size += (pre_sector + size + 2);
}
track_count = track;
if (track > track_count)
track_count = track;
if (track_spt != 255) {
dev->track_spt[track][head] = track_spt;