summaryrefslogtreecommitdiffstatshomepage
path: root/src/lib
diff options
context:
space:
mode:
author Robbbert <Robbbert@users.noreply.github.com>2021-04-10 19:13:52 +1000
committer Robbbert <Robbbert@users.noreply.github.com>2021-04-10 19:13:52 +1000
commit22fbb015532114c2051116ee94f891d062c497d8 (patch)
tree2429b32bd8773c3823f774eb6c347dc6b6dccd9d /src/lib
parent343c8e952d9a764c8678c8f8387acb5b0f78c9fe (diff)
trs80l2: cleaned a few things from last commit.
Diffstat (limited to 'src/lib')
-rw-r--r--src/lib/formats/trs80_dsk.cpp2
-rw-r--r--src/lib/formats/trs80_dsk.h6
2 files changed, 1 insertions, 7 deletions
diff --git a/src/lib/formats/trs80_dsk.cpp b/src/lib/formats/trs80_dsk.cpp
index 8f2d16070e2..1db57b89c68 100644
--- a/src/lib/formats/trs80_dsk.cpp
+++ b/src/lib/formats/trs80_dsk.cpp
@@ -177,7 +177,7 @@ bool jv3_format::load(io_generic *io, uint32_t form_factor, const std::vector<ui
// Make sure we don't have too many sectors
if (max_sect >= MAX_SECTORS)
{
- printf("Sector number %d exceeds maximum allowed (MAX_SECTOR).\n",max_sect);
+ printf("Sector number %d exceeds maximum allowed (%d).\n",max_sect,MAX_SECTORS);
return false;
}
diff --git a/src/lib/formats/trs80_dsk.h b/src/lib/formats/trs80_dsk.h
index 90fd82a6ece..60618a93693 100644
--- a/src/lib/formats/trs80_dsk.h
+++ b/src/lib/formats/trs80_dsk.h
@@ -43,12 +43,6 @@ public:
virtual const char *description() const override;
virtual const char *extensions() const override;
virtual bool supports_save() const override;
-
-protected:
- //virtual int get_track_dam_fm(const format &f, int head, int track) override;
-
-private:
- //static const format formats[];
};
extern const floppy_format_type FLOPPY_JV1_FORMAT;