From 5dfd97ff296a978712c95d46f59df622540473c3 Mon Sep 17 00:00:00 2001 From: Rob Loach Date: Wed, 21 Jun 2017 01:01:07 -0400 Subject: [PATCH] Add input_driver to config.def.h MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This fixes the following compilation error: ``` CC core_info.c In file included from core_info.c:31:0: config.def.h:302:48: error: ‘INPUT_TOGGLE_NONE’ undeclared here (not in a function) static unsigned menu_toggle_gamepad_combo = INPUT_TOGGLE_NONE ^ Makefile:155: recipe for target 'obj-unix/core_info.o' failed ``` --- config.def.h | 1 + 1 file changed, 1 insertion(+) diff --git a/config.def.h b/config.def.h index bbd02cb508..0d5a5a8999 100644 --- a/config.def.h +++ b/config.def.h @@ -20,6 +20,7 @@ #include #include "gfx/video_defines.h" +#include "input/input_driver.h" #ifdef HAVE_CONFIG_H #include "config.h"