summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author AJR <ajrhacker@users.noreply.github.com>2018-08-04 12:51:32 -0400
committer AJR <ajrhacker@users.noreply.github.com>2018-08-04 12:51:32 -0400
commitce99fccdb404808738e4da6a940acb89b3217f5c (patch)
treed80d49c43c3b190faa9d022c140954a43bcf51a0
parent7907b5afee719a812416adfbe33206600b9b5d7a (diff)
ti99_dsk.cpp: Change `crc` type to uint16_t here, too (nw)
-rw-r--r--src/lib/formats/ti99_dsk.cpp2
1 files changed, 1 insertions, 1 deletions
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++)