QUOTE (Robert @ Apr 20 2006, 09:36 AM)
I never heard of MarcaDS....
Yes, I am French, sorry about that
MarcaDS is an arcade emulator like Mame but it does not use the mame source code (too huge for DS). So you can play at games like Pacman, Donkey Kong, arkanoid, and so on (the list is in the zip file).
It is emulated about 40 games for now.
You can download the last version, you will have a readme file in Englsh too

!
For mic, this is very strange...

, I have change nothing.
MarcaDS freeze if you use UP and Down keys on the list. I will try do locate the code which is responsible of the problem.
[EDIT]I have found where is the problem, it is in my zip reader, but I don't know why it does not works now.
Here is the code :
CODE
if (_zipFile != NULL) {
free(_zipFile);
}
_zipFile = NULL;
FAT_chdir(szFATDir);
FAT_FILE* handle = FAT_fopen(path, "r");
if (handle != NULL) {
int iSSize=FAT_GetFileSize();
_zipFile = (char*) malloc (iSSize+1);
FAT_fread((void*) _zipFile, iSSize, 1, handle);
FAT_fclose(handle);
}
path is a const char * var which have the real zip filename.