From 62fdcbc92ba3c4a71742293d75d853c95eb5f3c7 Mon Sep 17 00:00:00 2001 From: Michael Pavone Date: Fri, 13 Nov 2015 22:56:59 -0800 Subject: Selecting a second game from the menu now works --- m68k_core.c | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'm68k_core.c') diff --git a/m68k_core.c b/m68k_core.c index 877327e..6a7283f 100644 --- a/m68k_core.c +++ b/m68k_core.c @@ -1005,6 +1005,13 @@ void m68k_reset(m68k_context * context) start_68k_context(context, address); } +void m68k_options_free(m68k_options *opts) +{ + free(opts->gen.native_code_map); + free(opts->gen.ram_inst_sizes); + free(opts); +} + m68k_context * init_68k_context(m68k_options * opts) { -- cgit v1.2.3