Skip to content

Commit

Permalink
(360) Moved libxenon files to 360/ directory
Browse files Browse the repository at this point in the history
  • Loading branch information
Twinaphex committed Jun 22, 2012
1 parent 951721d commit 7d60c06
Show file tree
Hide file tree
Showing 6 changed files with 5 additions and 5 deletions.
File renamed without changes.
8 changes: 4 additions & 4 deletions xenon/main.c → 360/frontend-xenon/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -31,14 +31,14 @@
#include <xenon_soc/xenon_power.h>
#include <elf/elf.h>
#include <dirent.h>
#include "../compat/strl.h"
#include "../../compat/strl.h"

#undef main

int rarch_main(int argc, char **argv);
static void start_ssnes(const char *path)
static void start_rarch(const char *path)
{
char arg0[] = "ssnes";
char arg0[] = "retroarch";
char arg1[256];
strlcpy(arg1, path, sizeof(arg1));
char *argv[3] = { arg0, arg1, NULL };
Expand Down Expand Up @@ -169,7 +169,7 @@ int main(void)

printf("%s\n", fn);

start_ssnes(fn);
start_rarch(fn);
}
}

Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion Makefile.xenon
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ PPU_TARGET_ADJUSTED := retroarch-libxenon.elf32
LDDIRS = -L. -L$(DEVKITXENON)/usr/lib -L$(DEVKITXENON)/xenon/lib/32
INCDIRS = -I. -I$(DEVKITXENON)/usr/include

OBJ = fifo_buffer.o retroarch.o driver.o file.o file_path.o settings.o message.o rewind.o movie.o gfx/gfx_common.o patch.o compat/compat.o screenshot.o audio/hermite.o dynamic.o audio/utils.o conf/config_file.o xenon/main.o xenon/xenon360_audio.o xenon/xenon360_input.o xenon/xenon360_video.o
OBJ = fifo_buffer.o retroarch.o driver.o file.o file_path.o settings.o message.o rewind.o movie.o gfx/gfx_common.o patch.o compat/compat.o screenshot.o audio/hermite.o dynamic.o audio/utils.o conf/config_file.o 360/frontend-xenon/main.o 360/xenon360_audio.o 360/xenon360_input.o 360/xenon360_video.o

LIBS = -lretro -lxenon -lm -lc
DEFINES = -std=gnu99 -DHAVE_CONFIGFILE=1 -DPACKAGE_VERSION=\"0.9.6\" -DRARCH_CONSOLE -DHAVE_GETOPT_LONG=1 -Dmain=rarch_main
Expand Down

0 comments on commit 7d60c06

Please sign in to comment.