diff --git a/source/common/keyboard.h b/source/common/keyboard.h index 9980b3da1..a78ee99c9 100644 --- a/source/common/keyboard.h +++ b/source/common/keyboard.h @@ -35,7 +35,5 @@ Modifications for JonoF's port by Jonathon Fowler (jf@jonof.id.au) #include "inputstate.h" #include "c_bind.h" -const char * KB_ScanCodeToString( int scancode ); // convert scancode into a string -int KB_StringToScanCode( const char * string ); // convert a string into a scancode #endif diff --git a/source/exhumed/src/menu.cpp b/source/exhumed/src/menu.cpp index 02121f82a..2f49770ee 100644 --- a/source/exhumed/src/menu.cpp +++ b/source/exhumed/src/menu.cpp @@ -25,7 +25,7 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. #include "menu.h" #include "names.h" #include "engine.h" -#include "keyboard.h" +#include "c_bind.h" #include "status.h" #include "random.h" #include "sound.h" diff --git a/source/exhumed/src/movie.cpp b/source/exhumed/src/movie.cpp index 35a8b8dc9..e405b4300 100644 --- a/source/exhumed/src/movie.cpp +++ b/source/exhumed/src/movie.cpp @@ -25,7 +25,7 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. #include #include "baselayer.h" #include "typedefs.h" -#include "keyboard.h" +#include "c_bind.h" #include "sound.h" #include "v_2ddrawer.h"