From 97103801e3a88ba6269a16fe760e5f77bebcc547 Mon Sep 17 00:00:00 2001 From: Michael Zapf Date: Wed, 22 Aug 2018 13:55:13 +0200 Subject: [PATCH] tutor: Fix cartslot declaration. (nw) --- src/mame/drivers/tutor.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mame/drivers/tutor.cpp b/src/mame/drivers/tutor.cpp index 5d02eaff528..ab718403dbf 100644 --- a/src/mame/drivers/tutor.cpp +++ b/src/mame/drivers/tutor.cpp @@ -770,7 +770,7 @@ MACHINE_CONFIG_START(tutor_state::tutor) CASSETTE(config, "cassette", 0).add_route(ALL_OUTPUTS, "cass_out", 0.25); // Cartridge slot - GENERIC_CARTSLOT(config, "cartslot", generic_linear_slot, "tutor_cart", nullptr); + GENERIC_CARTSLOT(config, "cartslot", generic_linear_slot, "tutor_cart", "bin"); // software lists SOFTWARE_LIST(config, "cart_list").set_type("tutor", SOFTWARE_LIST_ORIGINAL_SYSTEM);