From 8d1a91b77399261ee85bb00498e4d9ceb4fc2046 Mon Sep 17 00:00:00 2001 From: Dirk Best Date: Tue, 19 May 2015 17:50:11 +0200 Subject: [PATCH] Floppy: Add a function to return the number of sides the drive has --- src/emu/imagedev/floppy.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/emu/imagedev/floppy.h b/src/emu/imagedev/floppy.h index 0f36f70d7b7..98834facc65 100644 --- a/src/emu/imagedev/floppy.h +++ b/src/emu/imagedev/floppy.h @@ -121,6 +121,7 @@ public: attotime get_next_transition(const attotime &from_when); void write_flux(const attotime &start, const attotime &end, int transition_count, const attotime *transitions); void set_write_splice(const attotime &when); + int get_sides() { return sides; } UINT32 get_form_factor() const; UINT32 get_variant() const;