From 60feeee6235d064454863eb12e2bdbee41193a64 Mon Sep 17 00:00:00 2001 From: OBattler Date: Thu, 13 Sep 2018 13:42:33 +0200 Subject: [PATCH] Fixed the signedness of some variables in the ide struct. --- src/disk/hdc_ide.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/disk/hdc_ide.h b/src/disk/hdc_ide.h index 69a81276d..7d0dc9c9d 100644 --- a/src/disk/hdc_ide.h +++ b/src/disk/hdc_ide.h @@ -9,7 +9,7 @@ * Implementation of the IDE emulation for hard disks and ATAPI * CD-ROM devices. * - * Version: @(#)hdd_ide.h 1.0.10 2018/05/02 + * Version: @(#)hdd_ide.h 1.0.10 2018/09/13 * * Authors: Sarah Walker, * Miran Grca, @@ -29,14 +29,14 @@ typedef struct { hdd_num, channel, pos, sector_pos, lba, skip512, - reset, tracks, - spt, hpc, - mdma_mode, do_initial_read; + reset, mdma_mode, + do_initial_read; uint32_t secount, sector, cylinder, head, drive, cylprecomp, cfg_spt, cfg_hpc, - lba_addr; + lba_addr, tracks, + spt, hpc; uint16_t *buffer; uint8_t *sector_buffer;