diff --git a/GimliDS.nds b/GimliDS.nds index 183d2e7..842f0b1 100644 Binary files a/GimliDS.nds and b/GimliDS.nds differ diff --git a/README.md b/README.md index 2e4e37b..baef984 100644 --- a/README.md +++ b/README.md @@ -109,6 +109,12 @@ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA ``` ## Change Log +Version 0.9 release 30-Apr-2025 by wavemotion-dave + * New and improved key mapping - including the new Slide-n-Glide joysticks handling. + * SID filtering improved for better audio rendering (Space Taxi voice heard!). + * Faster across the board - even the DS-Lite/Phat is now running at (or close to) full speed. + * Fixed joystick handling so we sample at the correct rate - smoother motion on screen. + Version 0.8 release 27-Apr-2025 by wavemotion-dave * First public beta released! diff --git a/arm9/source/IEC.cpp b/arm9/source/IEC.cpp index be0b487..104060e 100644 --- a/arm9/source/IEC.cpp +++ b/arm9/source/IEC.cpp @@ -951,22 +951,3 @@ bool IsMountableFile(const char *path, int &type) } else return false; } - - -/* - * Read directory of mountable disk image or archive file into c64_dir_entry vector, - * returns false on error - */ - -//bool ReadDirectory(const char *path, int type, vector &vec) -//{ -// vec.clear(); -// switch (type) { -// case FILE_IMAGE: -// return ReadImageDirectory(path, vec); -// case FILE_ARCH: -// return ReadArchDirectory(path, vec); -// default: -// return false; -// } -//}