diff --git a/frontend/drivers/platform_ps3.c b/frontend/drivers/platform_ps3.c
index 802ae706d5..f7d7dc472d 100644
--- a/frontend/drivers/platform_ps3.c
+++ b/frontend/drivers/platform_ps3.c
@@ -14,15 +14,26 @@
* If not, see .
*/
+#include
+
+#include
+#include
+#ifdef IS_SALAMANDER
+#include
+#include
+#include
+#include
+#endif
+
#include
+#include
#include
#ifndef IS_SALAMANDER
#include
#endif
#include "../../ps3/sdk_defines.h"
-
#include "../../general.h"
#define EMULATOR_CONTENT_DIR "SSNE10000"
@@ -46,12 +57,6 @@ static bool multiman_detected = false;
static bool exit_spawn = false;
static bool exitspawn_start_game = false;
-#ifdef IS_SALAMANDER
-#include
-#include
-#include
-#include
-#endif
#ifdef HAVE_SYSUTILS
static void callback_sysutil_exit(uint64_t status,
@@ -348,21 +353,11 @@ static void frontend_ps3_exitspawn(char *core_path, size_t core_path_size)
#endif
}
-#include
-
-#include
-#include
-#include
-#include
-#include
-#include
-
-#include
static void frontend_ps3_exec(const char *path, bool should_load_game)
{
- char spawn_data[256] = {0};
unsigned i;
+ char spawn_data[256] = {0};
(void)should_load_game;
| | |