From ce99fccdb404808738e4da6a940acb89b3217f5c Mon Sep 17 00:00:00 2001 From: AJR Date: Sat, 4 Aug 2018 12:51:32 -0400 Subject: ti99_dsk.cpp: Change `crc` type to uint16_t here, too (nw) --- src/lib/formats/ti99_dsk.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/formats/ti99_dsk.cpp b/src/lib/formats/ti99_dsk.cpp index 1218d1beb90..b248c9dd594 100644 --- a/src/lib/formats/ti99_dsk.cpp +++ b/src/lib/formats/ti99_dsk.cpp @@ -453,7 +453,7 @@ void ti99_floppy_format::generate_mfm_track_from_sectors(floppy_image *image, ui // The remaining bytes are filled with the gap byte as gap 4. int gap4 = cell_count/16 - tracklen; - short crc = 0; + uint16_t crc = 0; // Create Gap 0 and Index AM for (int i=0; i < param[GAP0]; i++) -- cgit v1.2.3