Update for devkitPPC release 23

This commit is contained in:
fabio.olimpieri 2011-07-12 08:53:40 +00:00
parent 8653c75399
commit bee0dea293
2 changed files with 5 additions and 5 deletions

View File

@ -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

View File

@ -2,8 +2,8 @@
<app version="2">
<name>C64-network.org (Frodo)</name>
<coder>Simon Kagstrom</coder>
<version>2.2</version>
<release_date>20110602</release_date>
<version>2.3</version>
<release_date>20110622</release_date>
<short_description>Commodore 64 emulator</short_description>
<long_description>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.</long_description>
</app>