From 951f5a76a5795ca67fe5cba88eeee43b9d2d3552 Mon Sep 17 00:00:00 2001 From: Joe Osborn Date: Wed, 25 Jan 2023 20:46:39 -0800 Subject: [PATCH] Add bsv to emscripten builds (#14905) * Add bsv to emscripten builds BSV has no external dependencies so this addition should be fine. Co-authored-by: Joseph C. Osborn --- Makefile.emscripten | 1 + input/input_driver.h | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile.emscripten b/Makefile.emscripten index fb768854a9..2210c839a3 100644 --- a/Makefile.emscripten +++ b/Makefile.emscripten @@ -46,6 +46,7 @@ HAVE_CHEATS = 1 HAVE_IBXM = 1 HAVE_CORE_INFO_CACHE = 1 HAVE_7ZIP = 1 +HAVE_BSV_MOVIE = 1 ASYNC ?= 0 ifeq ($(LIBRETRO), mupen64plus) diff --git a/input/input_driver.h b/input/input_driver.h index 2ecfa191df..3173b1c479 100644 --- a/input/input_driver.h +++ b/input/input_driver.h @@ -27,7 +27,7 @@ #include #include #include - +#include #ifdef HAVE_CONFIG_H #include "../config.h" #endif /* HAVE_CONFIG_H */