summaryrefslogtreecommitdiff
path: root/opl/opl.c
diff options
context:
space:
mode:
Diffstat (limited to 'opl/opl.c')
-rw-r--r--opl/opl.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/opl/opl.c b/opl/opl.c
index 9ec19fd4..f28cd63f 100644
--- a/opl/opl.c
+++ b/opl/opl.c
@@ -38,6 +38,9 @@
#ifdef HAVE_IOPERM
extern opl_driver_t opl_linux_driver;
#endif
+#ifdef HAVE_LIBI386
+extern opl_driver_t opl_openbsd_driver;
+#endif
extern opl_driver_t opl_sdl_driver;
static opl_driver_t *drivers[] =
@@ -45,6 +48,9 @@ static opl_driver_t *drivers[] =
#ifdef HAVE_IOPERM
&opl_linux_driver,
#endif
+#ifdef HAVE_LIBI386
+ &opl_openbsd_driver,
+#endif
&opl_sdl_driver,
NULL
};