summaryrefslogtreecommitdiffstatshomepage
path: root/src/lib
diff options
context:
space:
mode:
author Vas Crabb <vas@vastheman.com>2021-03-28 14:34:50 +1100
committer Vas Crabb <vas@vastheman.com>2021-03-28 14:34:50 +1100
commite298c31a691286a42bb024c0fb0236af0875d31f (patch)
tree93d84222caf4a827785ed8ec9c2a6feffbfa5433 /src/lib
parente20239398c18cf25d433aa4388f0fd4509ccc1a6 (diff)
srcclean in preparation for release
Diffstat (limited to 'src/lib')
-rw-r--r--src/lib/formats/fsmgr.h2
-rw-r--r--src/lib/formats/ti99_dsk.cpp4
2 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/formats/fsmgr.h b/src/lib/formats/fsmgr.h
index ece7e6c3fcd..8cf082bb2ec 100644
--- a/src/lib/formats/fsmgr.h
+++ b/src/lib/formats/fsmgr.h
@@ -30,7 +30,7 @@ public:
// Floppy image initialization for add_raw
virtual void floppy_instantiate_raw(u32 key, floppy_image *image) const;
-
+
protected:
filesystem_manager_t() = default;
diff --git a/src/lib/formats/ti99_dsk.cpp b/src/lib/formats/ti99_dsk.cpp
index 79d4b3b0090..06ce98dfda0 100644
--- a/src/lib/formats/ti99_dsk.cpp
+++ b/src/lib/formats/ti99_dsk.cpp
@@ -1298,7 +1298,7 @@ void ti99_tdf_format::determine_sizes(io_generic *io, int& cell_size, int& secto
sector_count = 18;
tracks = 40;
break;
- case 1003520:
+ case 1003520:
sector_count = 36;
tracks = 40;
break;
@@ -1325,7 +1325,7 @@ void ti99_tdf_format::determine_sizes(io_generic *io, int& cell_size, int& secto
sector_count = 0;
return;
}
-
+
heads = 2; // TDF only supports two-sided recordings
cell_size = (sector_count <= 9)? 4000 : ((sector_count <= 18)? 2000 : 1000);
}