diff --git a/xdk/xdk_resources.h b/xdk/xdk_resources.h index aa16867977..dacda88072 100644 --- a/xdk/xdk_resources.h +++ b/xdk/xdk_resources.h @@ -35,7 +35,6 @@ struct XBRESOURCE #endif }; -// Resource types enum { RESOURCETYPE_USERDATA = ( ( 'U' << 24 ) | ( 'S' << 16 ) | ( 'E' << 8 ) | ( 'R' ) ), @@ -151,4 +150,4 @@ class PackedResource ~PackedResource(); }; -#endif RARCH_XDK_RESOURCE_H +#endif /* RARCH_XDK_RESOURCE_H */ diff --git a/xdk/xdk_xinput_input.c b/xdk/xdk_xinput_input.c index e80e058581..4e2ec607ce 100644 --- a/xdk/xdk_xinput_input.c +++ b/xdk/xdk_xinput_input.c @@ -22,11 +22,12 @@ #endif #define MAX_PADS 4 +#define DEADZONE (16000) #include "../driver.h" #include "../general.h" #include "../libretro.h" -#include "xdk_xinput_input.h" + static uint64_t state[MAX_PADS]; unsigned pads_connected; diff --git a/xdk/xdk_xinput_input.h b/xdk/xdk_xinput_input.h deleted file mode 100644 index a3062f55fa..0000000000 --- a/xdk/xdk_xinput_input.h +++ /dev/null @@ -1,22 +0,0 @@ -/* RetroArch - A frontend for libretro. - * Copyright (C) 2010-2013 - Hans-Kristian Arntzen - * Copyright (C) 2011-2013 - Daniel De Matteis - * - * RetroArch is free software: you can redistribute it and/or modify it under the terms - * of the GNU General Public License as published by the Free Software Found- - * ation, either version 3 of the License, or (at your option) any later version. - * - * RetroArch is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; - * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR - * PURPOSE. See the GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License along with RetroArch. - * If not, see . - */ - -#ifndef _XDK_XINPUT_H -#define _XDK_XINPUT_H - -#define DEADZONE (16000) - -#endif