From 974d517cb392b69b2969922205e387a2753b7246 Mon Sep 17 00:00:00 2001 From: TC1995 Date: Mon, 29 May 2017 02:47:27 +0200 Subject: [PATCH] PS/1 audio device removed from the 2133 since it doesn't support it. --- src/model.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/model.c b/src/model.c index 7408a0670..2c88624f2 100644 --- a/src/model.c +++ b/src/model.c @@ -433,8 +433,8 @@ void ps1_common_init() if (romset != ROM_IBMPS1_2133) { fdc_set_dskchg_activelow(); + device_add(&ps1_audio_device); } - device_add(&ps1_audio_device); /*PS/1 audio uses ports 200h and 202-207h, so only initialise gameport on 201h*/ if (joystick_type != 7) device_add(&gameport_201_device); }