mirror of
https://github.com/Oibaf66/frodo-wii.git
synced 2024-11-13 07:05:12 +01:00
Update for devkitPPC release 23
This commit is contained in:
parent
8653c75399
commit
bee0dea293
@ -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
|
||||
|
4
meta.xml
4
meta.xml
@ -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>
|
||||
|
Loading…
Reference in New Issue
Block a user