From bee0dea2935107bd6204e48c64450ce79f17bfca Mon Sep 17 00:00:00 2001 From: "fabio.olimpieri" Date: Tue, 12 Jul 2011 08:53:40 +0000 Subject: [PATCH] Update for devkitPPC release 23 --- Src/main.cpp | 6 +++--- meta.xml | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Src/main.cpp b/Src/main.cpp index e5097cb..4ec44d2 100644 --- a/Src/main.cpp +++ b/Src/main.cpp @@ -153,7 +153,7 @@ extern "C" int main(int argc, char **argv) gettimeofday(&tv, NULL); srand(tv.tv_usec); #if defined(GEKKO) - DIR_ITER *dir_tmp; + DIR *dir_tmp; #endif // Init SDL @@ -191,8 +191,8 @@ extern "C" int main(int argc, char **argv) sleep(3); //create tmp directory if it does not exist - dir_tmp = diropen("/frodo/tmp"); - if (!dir_tmp) {mkdir("/frodo/tmp",0777);printf("Making tmp directory\n");sleep(2);} else dirclose(dir_tmp); + dir_tmp = opendir("/frodo/tmp"); + if (!dir_tmp) {mkdir("/frodo/tmp",0777);printf("Making tmp directory\n");sleep(2);} else closedir(dir_tmp); #endif diff --git a/meta.xml b/meta.xml index 8b7cd0d..3c704f4 100644 --- a/meta.xml +++ b/meta.xml @@ -2,8 +2,8 @@ C64-network.org (Frodo) Simon Kagstrom - 2.2 - 20110602 + 2.3 + 20110622 Commodore 64 emulator C64-network.org is a networked C64 emulator based on Frodo written by Christian Bauer. It supports C64 disk and tape images in the .d64, .t64 and .prg formats. The port to Wii was done by Simon Kagstrom.