From 4b5eb91e6e897dfcd6001ced9bb47794bb6f4428 Mon Sep 17 00:00:00 2001 From: OBattler Date: Fri, 16 Sep 2016 02:37:04 +0200 Subject: [PATCH] Fixed a compile-breaking typo in gameport.c . --- src/gameport.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gameport.c b/src/gameport.c index 1a1e9bd5d..b979f84fe 100644 --- a/src/gameport.c +++ b/src/gameport.c @@ -212,7 +212,7 @@ void *gameport_init() return gameport; } - gamport = gameport_init_common(); + gameport = gameport_init_common(); io_sethandler(0x0200, 0x0008, gameport_read, NULL, NULL, gameport_write, NULL, NULL, gameport);