Version 0.9 released. See readme.md file for details.

This commit is contained in:
Dave Bernazzani 2025-04-30 06:08:04 -04:00
parent 0035ef390d
commit 9199dd85c0
3 changed files with 6 additions and 19 deletions

Binary file not shown.

View File

@ -109,6 +109,12 @@ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
``` ```
## Change Log ## 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 Version 0.8 release 27-Apr-2025 by wavemotion-dave
* First public beta released! * First public beta released!

View File

@ -951,22 +951,3 @@ bool IsMountableFile(const char *path, int &type)
} }
else return false; 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<c64_dir_entry> &vec)
//{
// vec.clear();
// switch (type) {
// case FILE_IMAGE:
// return ReadImageDirectory(path, vec);
// case FILE_ARCH:
// return ReadArchDirectory(path, vec);
// default:
// return false;
// }
//}