diff --git a/Changes.txt b/Changes.txt index 85f230597..40acf140a 100644 --- a/Changes.txt +++ b/Changes.txt @@ -28,15 +28,14 @@ * Fixed bug with aspect correction and fullscreen mode; snapshots from such a mode are now pixel-exact. - * Fixed Atari mouse autodetection. - - * Fixed a bug in 6.3 that caused CDF cartridges to crash on the Retron77 - and that causes reduced ARM emulation performance for CDF cartridges on - other platforms. + * Fixed a bug that caused CDF cartridges to crash on the Retron77 and + reduced ARM emulation performance for CDF cartridges on other platforms. * Fixed crash with missing or incorrectly sized SaveKey data file, and with certain functions not working (erase pages, erase entire EEPROM). + * Fixed Atari mouse autodetection. + * Fixed bug in ROM launcher, with last ROM selected not being remembered when exiting and re-entering a directory. diff --git a/src/gui/WhatsNewDialog.cxx b/src/gui/WhatsNewDialog.cxx index baaf88d5a..c15474e1e 100644 --- a/src/gui/WhatsNewDialog.cxx +++ b/src/gui/WhatsNewDialog.cxx @@ -43,6 +43,7 @@ WhatsNewDialog::WhatsNewDialog(OSystem& osystem, DialogContainer& parent, const max_w, max_h); #if defined(RETRON77) + add(ypos, "fixed CDF cartridges crash"); add(ypos, "fixed crash with SaveKey ROMs (EEPROM file issues)"); add(ypos, "fixed bug with launcher not remembering last selected ROM"); #else @@ -50,8 +51,9 @@ WhatsNewDialog::WhatsNewDialog(OSystem& osystem, DialogContainer& parent, const add(ypos, "added color parameters to 'Custom' palette"); add(ypos, "improved AtariVox-USB adaptor autodetection"); add(ypos, "fixed fullscreen mode, aspect correction and pixel-exact snapshots"); - add(ypos, "fixed Atari mouse autodetection"); + add(ypos, "fixed reduced ARM emulation performance for CDF cartridges"); add(ypos, "fixed crash with SaveKey ROMs (EEPROM file issues)"); + add(ypos, "fixed Atari mouse autodetection"); add(ypos, "fixed bug with launcher not remembering last selected ROM"); add(ypos, ELLIPSIS + " (for a complete list see 'docs/Changes.txt')"); #endif