diff multi_game.c @ 1446:adb62000d296

Pass the correct context pointer to write handlers in mapper deserialize functions
author Michael Pavone <pavone@retrodev.com>
date Mon, 28 Aug 2017 22:41:02 -0700
parents 14a2834d010c
children
line wrap: on
line diff
--- a/multi_game.c	Mon Aug 28 22:40:33 2017 -0700
+++ b/multi_game.c	Mon Aug 28 22:41:02 2017 -0700
@@ -33,5 +33,5 @@
 
 void multi_game_deserialize(deserialize_buffer *buf, genesis_context *gen)
 {
-	write_multi_game_b(load_int8(buf), gen, 0);
+	write_multi_game_b(load_int8(buf), gen->m68k, 0);
 }