minor adjustments
authornotaz <notasas@gmail.com>
Thu, 11 Oct 2007 20:38:27 +0000 (20:38 +0000)
committernotaz <notasas@gmail.com>
Thu, 11 Oct 2007 20:38:27 +0000 (20:38 +0000)
git-svn-id: file:///home/notaz/opt/svn/PicoDrive@273 be3aeb3a-fb24-0410-a615-afba39da0efa

platform/gizmondo/emu.c
platform/gizmondo/main.c
platform/gizmondo/menu.c
platform/gizmondo/menu.h

index 440a8de..cf9a13e 100644 (file)
@@ -104,7 +104,7 @@ void emu_Init(void)
 void emu_Deinit(void)
 {
        // save SRAM
-       if((currentConfig.EmuOpt & 1) && SRam.changed) {
+       if ((currentConfig.EmuOpt & 1) && SRam.changed) {
                emu_SaveLoadGame(0, 1);
                SRam.changed = 0;
        }
index 8038a94..59b8e57 100644 (file)
@@ -1,4 +1,4 @@
-// (c) Copyright 2006 notaz, All rights reserved.\r
+// (c) Copyright 2007 notaz, All rights reserved.\r
 // Free for non-commercial use.\r
 \r
 // For commercial use, separate licencing terms must be obtained.\r
index 5606214..6e501a8 100644 (file)
@@ -45,7 +45,6 @@ static void menu_darken_bg(void *dst, const void *src, int pixels, int darker);
 static void menu_prepare_bg(int use_game_bg);\r
 \r
 static unsigned int inp_prev = 0;\r
-static int inp_prevjoy = 0;\r
 \r
 static unsigned long wait_for_input(unsigned int interesting)\r
 {\r
@@ -71,7 +70,6 @@ static unsigned long wait_for_input(unsigned int interesting)
                wait = 50;\r
        }\r
        inp_prev = ret;\r
-       inp_prevjoy = 0;\r
 \r
        // we don't need diagonals in menus\r
        if ((ret&BTN_UP)   && (ret&BTN_LEFT))  ret &= ~BTN_LEFT;\r
@@ -264,10 +262,10 @@ static int my_scandir(const char *dir, struct my_dirent ***namelist_out,
        BOOL bRet;\r
 \r
        wdir = malloc(sizeof(wdir[0]) * MAX_PATH);\r
-       if (wdir == NULL) { lprintf_al("%s:%s: OOM\n", __FILE__, __LINE__); goto fail; }\r
+       if (wdir == NULL) { lprintf_al("%s:%i: OOM\n", __FILE__, __LINE__); goto fail; }\r
 \r
        namelist = malloc(sizeof(*namelist) * name_alloc);\r
-       if (namelist == NULL) { lprintf_al("%s:%s: OOM\n", __FILE__, __LINE__); goto fail; }\r
+       if (namelist == NULL) { lprintf_al("%s:%i: OOM\n", __FILE__, __LINE__); goto fail; }\r
 \r
        // try to read first..\r
        len = cstr2wstr(wdir, dir);\r
@@ -312,7 +310,7 @@ static int my_scandir(const char *dir, struct my_dirent ***namelist_out,
                        void *tmp;\r
                        name_alloc *= 2;\r
                        tmp = realloc(namelist, sizeof(*namelist) * name_alloc);\r
-                       if (tmp == NULL) { lprintf_al("%s:%s: OOM\n", __FILE__, __LINE__); goto fail; }\r
+                       if (tmp == NULL) { lprintf_al("%s:%i: OOM\n", __FILE__, __LINE__); goto fail; }\r
                        namelist = tmp;\r
                }\r
 \r
index d4e96be..3829836 100644 (file)
@@ -3,8 +3,6 @@
 \r
 // For commercial use, separate licencing terms must be obtained.\r
 \r
-void menu_init(void);\r
-void text_out16(int x, int y, const char *texto, ...);\r
 void menu_loop(void);\r
 int  menu_loop_tray(void);\r
 void menu_romload_prepare(const char *rom_name);\r