(WII) fix RGUI controls

(CONSOLES) fix logging
This commit is contained in:
ToadKing 2013-04-12 09:18:17 -04:00
parent 5a9194a95c
commit 4782522dbd
3 changed files with 21 additions and 20 deletions

View File

@ -7,7 +7,7 @@ PERF_TEST = 0
WHOLE_ARCHIVE_LINK = 0
BIG_STACK = 0
PC_DEVELOPMENT_IP_ADDRESS = "192.168.1.100"
PC_DEVELOPMENT_IP_ADDRESS = "192.168.1.13"
PC_DEVELOPMENT_UDP_PORT = 3490
# system platform

View File

@ -22,25 +22,6 @@
#include "../config.def.h"
#include "menu/rmenu.h"
#if defined(__CELLOS_LV2__)
#include "platform/platform_ps3_exec.c"
#include "platform/platform_ps3.c"
#elif defined(GEKKO)
#ifdef HW_RVL
#include "platform/platform_gx_exec.c"
#endif
#include "platform/platform_gx.c"
#elif defined(_XBOX)
#include "platform/platform_xdk_exec.c"
#include "platform/platform_xdk.c"
#elif defined(PSP)
#include "platform/platform_psp.c"
#endif
#undef main
default_paths_t default_paths;
static inline void inl_logger_init(void)
{
#if defined(HAVE_LOGGER)
@ -63,6 +44,25 @@ static inline void inl_logger_deinit(void)
#endif
}
#if defined(__CELLOS_LV2__)
#include "platform/platform_ps3_exec.c"
#include "platform/platform_ps3.c"
#elif defined(GEKKO)
#ifdef HW_RVL
#include "platform/platform_gx_exec.c"
#endif
#include "platform/platform_gx.c"
#elif defined(_XBOX)
#include "platform/platform_xdk_exec.c"
#include "platform/platform_xdk.c"
#elif defined(PSP)
#include "platform/platform_psp.c"
#endif
#undef main
default_paths_t default_paths;
/* If a CORE executable of name CORE.extension exists, rename filename
* to a more sane name. */
static bool libretro_install_core(const char *path_prefix, const char *extension)

View File

@ -1932,6 +1932,7 @@ static const struct retro_keybind _menu_nav_binds[] = {
{ 0, 0, NULL, 0, GX_GC_B | GX_CLASSIC_B | GX_WIIMOTE_B | GX_WIIMOTE_1, 0 },
{ 0, 0, NULL, 0, GX_GC_START | GX_CLASSIC_PLUS | GX_WIIMOTE_PLUS, 0 },
{ 0, 0, NULL, 0, GX_GC_Z_TRIGGER | GX_CLASSIC_MINUS | GX_WIIMOTE_MINUS, 0 },
{ 0, 0, NULL, 0, GX_WIIMOTE_HOME | GX_CLASSIC_HOME, 0 },
#elif defined(HW_DOL)
{ 0, 0, NULL, 0, GX_GC_UP | GX_GC_LSTICK_UP | GX_GC_RSTICK_UP, 0 },
{ 0, 0, NULL, 0, GX_GC_DOWN | GX_GC_LSTICK_DOWN | GX_GC_RSTICK_DOWN, 0 },