changeset 1612:28ec17387be5

Remove stray / in jcart.c
author Michael Pavone <pavone@retrodev.com>
date Tue, 14 Aug 2018 08:29:27 -0700
parents dafe2a8769fd
children 2d9e8a7b8ba2
files jcart.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/jcart.c	Tue Aug 14 00:22:10 2018 -0700
+++ b/jcart.c	Tue Aug 14 08:29:27 2018 -0700
@@ -41,7 +41,7 @@
 	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;
 }