mirror of
https://github.com/libretro/RetroArch.git
synced 2024-11-23 16:09:47 +00:00
Apply xerpi diff
This commit is contained in:
parent
15853842f0
commit
7931436f5b
@ -18,6 +18,7 @@
|
||||
#include <stdint.h>
|
||||
#include <malloc.h>
|
||||
#include <stdio.h>
|
||||
#include <string.h>
|
||||
|
||||
#ifdef VITA
|
||||
#include <psp2/kernel/processmgr.h>
|
||||
|
@ -1,6 +1,9 @@
|
||||
#include <errno.h>
|
||||
#include <reent.h>
|
||||
#include "../../defines/psp_defines.h"
|
||||
#include <psp2/kernel/sysmem.h>
|
||||
#include <psp2/kernel/threadmgr.h>
|
||||
|
||||
static int _newlib_heap_memblock;
|
||||
static unsigned _newlib_heap_size;
|
||||
static char *_newlib_heap_base, *_newlib_heap_end, *_newlib_heap_cur;
|
||||
|
@ -18,10 +18,17 @@
|
||||
#include <stddef.h>
|
||||
#include <string.h>
|
||||
|
||||
#include "retroarch.h"
|
||||
#include "paths.h"
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include "../../config.h"
|
||||
#endif
|
||||
|
||||
#ifdef HAVE_MENU
|
||||
#include "../../menu/menu_driver.h"
|
||||
#endif
|
||||
|
||||
#ifdef VITA
|
||||
#include <psp2/power.h>
|
||||
#include <psp2/sysmodule.h>
|
||||
@ -38,6 +45,7 @@
|
||||
#include <pspsdk.h>
|
||||
#endif
|
||||
|
||||
#include <string/stdstring.h>
|
||||
#include <boolean.h>
|
||||
#include <file/file_path.h>
|
||||
#ifndef IS_SALAMANDER
|
||||
|
@ -21,9 +21,11 @@
|
||||
|
||||
#include <retro_inline.h>
|
||||
#include <string/stdstring.h>
|
||||
#include <gfx/math/matrix_4x4.h>
|
||||
|
||||
#include "../../defines/psp_defines.h"
|
||||
#include "../../driver.h"
|
||||
#include "../video_driver.h"
|
||||
#include "../video_coord_array.h"
|
||||
|
||||
typedef struct vita_menu_frame
|
||||
|
@ -16,8 +16,12 @@
|
||||
|
||||
#include <vita2d.h>
|
||||
|
||||
#include <verbosity.h>
|
||||
#include <configuration.h>
|
||||
|
||||
#include <retro_inline.h>
|
||||
#include <string/stdstring.h>
|
||||
#include <formats/image.h>
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include "../../config.h"
|
||||
@ -27,11 +31,13 @@
|
||||
#include "../../menu/menu_driver.h"
|
||||
#endif
|
||||
|
||||
#include "../../defines/psp_defines.h"
|
||||
#include "../common/vita2d_common.h"
|
||||
#include "../../driver.h"
|
||||
#include "../../runloop.h"
|
||||
#include "../video_coord_array.h"
|
||||
#include "../video_context_driver.h"
|
||||
|
||||
#include "../../defines/psp_defines.h"
|
||||
|
||||
extern void *memcpy_neon(void *dst, const void *src, size_t n);
|
||||
|
||||
|
@ -17,6 +17,9 @@
|
||||
#include <vita2d.h>
|
||||
|
||||
#include <encodings/utf.h>
|
||||
#include <verbosity.h>
|
||||
|
||||
#include "../common/vita2d_common.h"
|
||||
|
||||
#include "../font_driver.h"
|
||||
|
||||
|
@ -33,6 +33,7 @@
|
||||
|
||||
#include <boolean.h>
|
||||
#include <libretro.h>
|
||||
#include <retro_miscellaneous.h>
|
||||
|
||||
#ifdef HAVE_KERNEL_PRX
|
||||
#include "../../bootstrap/psp1/kernel_functions.h"
|
||||
|
@ -15,13 +15,23 @@
|
||||
*/
|
||||
|
||||
#include <stdint.h>
|
||||
#include <string.h>
|
||||
|
||||
#include <input/input_config.h>
|
||||
|
||||
#include "../../tasks/tasks_internal.h"
|
||||
|
||||
#include "../../configuration.h"
|
||||
|
||||
#include "../../defines/psp_defines.h"
|
||||
|
||||
#ifdef HAVE_MENU
|
||||
#include "../../menu/menu_driver.h"
|
||||
#endif
|
||||
|
||||
#if defined(VITA)
|
||||
#include <psp2/kernel/sysmem.h>
|
||||
#include <psp2/ctrl.h>
|
||||
#include <psp2/touch.h>
|
||||
#define PSP_MAX_PADS 4
|
||||
static int psp2_model;
|
||||
|
@ -101,6 +101,8 @@ struct hostent
|
||||
char *h_addr;
|
||||
};
|
||||
|
||||
struct SceNetInAddr inet_aton(const char *ip_addr);
|
||||
|
||||
#else
|
||||
#include <sys/select.h>
|
||||
#include <sys/types.h>
|
||||
|
@ -142,6 +142,7 @@ int socket_select(int nfds, fd_set *readfs, fd_set *writefds,
|
||||
#if defined(__CELLOS_LV2__)
|
||||
return socketselect(nfds, readfs, writefds, errorfds, timeout);
|
||||
#elif defined(VITA)
|
||||
extern int retro_epoll_fd;
|
||||
SceNetEpollEvent ev = {0};
|
||||
|
||||
ev.events = SCE_NET_EPOLLIN | SCE_NET_EPOLLHUP;
|
||||
|
Loading…
Reference in New Issue
Block a user