From eed0812cf64090a8f09d0e573c82ea325014e123 Mon Sep 17 00:00:00 2001 From: Michael Pavone Date: Tue, 14 Aug 2018 08:29:27 -0700 Subject: Remove stray / in jcart.c --- jcart.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'jcart.c') diff --git a/jcart.c b/jcart.c index fec35a9..734d79d 100644 --- a/jcart.c +++ b/jcart.c @@ -41,7 +41,7 @@ uint16_t jcart_read_w(uint32_t address, void *context) io_port *ports = get_ports(m68k); //according to Eke, bit 14 is forced low, at least on the Micro Machines 2 cart //TODO: Test behavior of actual cart - uint16_t value = io_data_read(ports, m68k->current_cycle) << 8/; + uint16_t value = io_data_read(ports, m68k->current_cycle) << 8; value |= io_data_read(ports + 1, m68k->current_cycle); return value; } -- cgit v1.2.3