Changelog:
r43648 | blackystardust | 2023-04-08 05:08:13 +0000 (Sat, 08 Apr 2023) | 1 line
Activate snes mapping for snespad and superpad64.
------------------------------------------------------------------------
r43647 | rhialto | 2023-04-07 19:03:07 +0000 (Fri, 07 Apr 2023) | 11 lines
Further removal of the RMW_FLAG from non-sc 6510core.
Read-modify-write instructions no longer set the RMW_FLAG. This was no
longer needed since r37549 where the dummy writes were made explicit in
code. Also, clock increments during the RMW instructions are now placed
between memory accesses instead of all at the end.
The VIC-II code needed some small adjustment to work without the RMW_FLAG.
Nothing should be setting the flag any more, paving the way for further
removals.
Testbench-tested with x64, x64dtv, x128c64.
------------------------------------------------------------------------
r43646 | compyx | 2023-04-07 11:54:32 +0000 (Fri, 07 Apr 2023) | 3 lines
Gtk3: Use new cart image widget for Expert Cartridge
------------------------------------------------------------------------
r43645 | gpz | 2023-04-06 14:51:33 +0000 (Thu, 06 Apr 2023) | 1 line
fix uppercase N in cbm2 keymaps, fixes bug #1862
------------------------------------------------------------------------
r43643 | compyx | 2023-04-05 17:36:22 +0000 (Wed, 05 Apr 2023) | 9 lines
SDL2: Remove incorrect typedef for `SDL_JoystickID`
As it stands now with the mistyped `#ifdef USE_SDLUI2` we typedef `SDL_JoystickID`
to `int` for SDL 2.x, not 1.x, *and* the correct typedef would be `int32_t`,
not plain `int`.
Since there are other issues with SDL 1.2 and the new joystick code it's better
to remove this incorrect typedef to avoid issues in the future.
------------------------------------------------------------------------