1
0
mirror of https://github.com/libretro/RetroArch synced 2025-03-23 10:20:57 +00:00

(Android) Buildfix

This commit is contained in:
twinaphex 2015-09-16 05:45:50 +02:00
parent b29307207f
commit c11b08ed91
3 changed files with 10 additions and 9 deletions
gfx/drivers_context
input/drivers
menu

@ -13,6 +13,12 @@
* You should have received a copy of the GNU General Public License along with RetroArch. * You should have received a copy of the GNU General Public License along with RetroArch.
* If not, see <http://www.gnu.org/licenses/>. * If not, see <http://www.gnu.org/licenses/>.
*/ */
#include <stdint.h>
#include <EGL/egl.h>
#include <sys/system_properties.h>
#include <formats/image.h>
#include "../../driver.h" #include "../../driver.h"
#include "../../general.h" #include "../../general.h"
@ -20,12 +26,7 @@
#include "../video_monitor.h" #include "../video_monitor.h"
#include "../drivers/gl_common.h" #include "../drivers/gl_common.h"
#include <EGL/egl.h> #include "../../frontend/drivers/platform_linux.h"
#include "../../frontend/drivers/platform_android.h"
#include <formats/image.h>
#include <stdint.h>
/* forward declaration */ /* forward declaration */
int system_property_get(const char *name, char *value); int system_property_get(const char *name, char *value);

@ -22,7 +22,7 @@
#include <retro_inline.h> #include <retro_inline.h>
#include "../../frontend/drivers/platform_android.h" #include "../../frontend/drivers/platform_linux.h"
#include "../input_autodetect.h" #include "../input_autodetect.h"
#include "../input_common.h" #include "../input_common.h"
#include "../input_joypad.h" #include "../input_joypad.h"

@ -33,8 +33,8 @@
#include "../git_version.h" #include "../git_version.h"
#include "../file_ext.h" #include "../file_ext.h"
#ifdef ANDROID #ifdef __linux__
#include "../frontend/drivers/platform_android.h" #include "../frontend/drivers/platform_linux.h"
#endif #endif
extern unsigned rpl_entry_selection_ptr; extern unsigned rpl_entry_selection_ptr;