Stephen Anthony
fed3fa2241
Fix parsing large MVC files causing lockup/crash in GUI (fixes # 829).
...
Still TODO is deal with large files other than MVC, and also ZIP files.
At least the logic for analyzing size is now in one method (OSystem::openROM).
2022-04-16 19:25:50 -02:30
Thomas Jentzsch
df4900828c
added regex for PAL-N in filename (->NTSC50)
2022-04-13 11:27:53 +02:00
Thomas Jentzsch
cdecb9165e
improved bank origin detection ( fixes #428 )
2022-04-11 09:14:01 +02:00
Thomas Jentzsch
47710cdbcd
Fixed spelling of EconoBanking
2022-04-10 16:25:15 +02:00
Thomas Jentzsch
8fd02dc8ad
fixed company name into Fotomania
2022-04-10 16:16:12 +02:00
Stephen Anthony
2cf31c10ee
Disable warnings in Xcode for all files we don't control.
2022-04-09 13:08:58 -02:30
Stephen Anthony
6b73ea60c3
Added recent class additions to Xcode project.
...
Fixed some minor issues in VS project.
Minor formatting fixes.
2022-04-09 12:19:18 -02:30
Thomas Jentzsch
63387c693a
fixed path of Cart0FA0Widget
2022-04-09 14:55:21 +02:00
Thomas Jentzsch
544f662f1d
added 0FA0 (Mania) bankswitching
...
modified UA bankswitching accordingly
2022-04-09 10:26:22 +02:00
Stephen Anthony
3b9184ec5f
Eliminated BSPF::getenv(), as only the UNIX version is used.
...
I spent a lot of time trying to eliminate warnings in the Windows version of this
function, only to realize it's only ever used in POSIX-specific code!
2022-04-08 19:51:15 -02:30
Stephen Anthony
071e8f7eb1
Fix minor warning from cppcheck.
2022-04-08 11:23:26 -02:30
Thomas Jentzsch
d3766f0737
added hotkey tooltips to CommandDialog
2022-04-07 11:14:46 +02:00
Thomas Jentzsch
ab25cc1c9a
some minor doc updates
2022-04-06 11:48:13 +02:00
Thomas Jentzsch
0e159f4f66
aligned hotkey display format with doc
2022-04-06 11:46:14 +02:00
Thomas Jentzsch
fc1d87f6de
added some more hotkey tooltips to GameInfoDialog
2022-04-05 18:07:31 +02:00
Stephen Anthony
5258d05167
Some more const updates for Mac port.
2022-04-04 16:27:13 -02:30
Stephen Anthony
ad850959c0
Eliminate unused variable.
2022-04-04 13:46:41 -02:30
Thomas Jentzsch
2f10781b6d
added hotkey tooltips to debugger
2022-04-04 17:38:21 +02:00
Stephen Anthony
c3ef18987b
Minor 'const' updates to POSIX classes.
2022-04-03 20:36:39 -02:30
Stephen Anthony
0c1eaa5b23
Speed up linking in Visual Studio, per recommendations given after
...
compiling.
2022-04-03 16:01:32 -02:30
Stephen Anthony
acbddf6d44
Fix methods aliasing superclass methods without using virtual/override.
2022-04-03 15:58:57 -02:30
Thomas Jentzsch
04e629450a
Merge branch 'master' of https://github.com/stella-emu/stella
2022-04-03 19:55:59 +02:00
Thomas Jentzsch
edef47b4ed
fixed #885 (detected settings display overwritten by auto pause)
2022-04-03 19:55:42 +02:00
Stephen Anthony
a038a0f791
Updated M6502.ins/m4 to use static_cast and const.
2022-04-03 12:51:59 -02:30
Stephen Anthony
fc2ae0c585
Make DefProps constexpr.
2022-04-02 21:45:42 -02:30
Stephen Anthony
99ad1618e0
Converted more C-style code to C++.
2022-04-02 21:04:06 -02:30
Stephen Anthony
40127109c8
Fourth pass at updates for warnings from Visual Studio.
2022-04-02 19:25:35 -02:30
Thomas Jentzsch
11ff4aca4f
Added hotkey display to tooltips
2022-04-02 19:07:28 +02:00
Stephen Anthony
0ef0e35f45
Fix compile error; I forget to test changes in debug mode.
2022-03-31 18:54:40 -02:30
Stephen Anthony
619cfff2f9
Third pass at updates for warnings from Visual Studio.
2022-03-31 17:20:19 -02:30
Thomas Jentzsch
f6fcb8aa06
optimized Thumbulator range checks
2022-03-30 14:20:11 +02:00
Thomas Jentzsch
5e5a426a02
Merge branch 'master' of https://github.com/stella-emu/stella
2022-03-29 19:18:35 +02:00
Thomas Jentzsch
7b1e494ca3
enhanced range checks for Thumbulator
...
changed initial Thumb code stack pointer
2022-03-29 19:18:11 +02:00
Stephen Anthony
48d1a6a321
Second pass at fixing warning from Visual Studio (const and C-style casts).
2022-03-28 22:00:26 -02:30
Stephen Anthony
6a74c61ac5
First pass at fixing warning from Visual Studio (const and C-style casts).
...
This isn't all the code, just checking in the WIP so far.
It's not exciting work like new features, etc, but is required to keep the codebase clean.
I actually find it kind of relaxing; taking a short break from new features.
2022-03-27 18:09:55 -02:30
Christian Speckner
f4401bea92
Xcode: target local arch for debug build, create fat binary for release.
2022-03-22 22:50:29 +01:00
Stephen Anthony
fee159ea81
Minor updates for warnings from cppcheck.
2022-03-18 14:58:39 -02:30
Thomas Jentzsch
6d07ba4072
minor tweaks
2022-03-16 16:12:55 +01:00
Thomas Jentzsch
279cffe7b7
added another UA bankswitching detection pattern
2022-03-08 18:33:12 +01:00
Thomas Jentzsch
54c0dc8420
updated game properties
2022-03-06 12:26:33 +01:00
Thomas Jentzsch
2c76803652
updated Changes.txt and WhatsNewDialog
2022-03-06 11:57:22 +01:00
eds-collabora
6ab680cf07
Paddle mode enhancements ( #861 )
...
* Separate control precedence for paddles A and B
Previously, the paddle pair was treated as a single unit as far as
event overrides were concerned, so an analog input on paddle B would
prevent a mouse or even another digital controller from controlling
paddle A.
This commit separates out paddle A and B as far as event handling is
concerned. The same steps are applied, but now events affecting paddle
A will not preempt events of other types for paddle B from being
tested, and vice versa.
* Paddle mode enhancements
Map paddles to distinct controllers. For two player games, having
both players share a single controller isn't ideal. Instead, put
- Left A -> joystick 0
- Left B -> joystick 1
- Right A -> joystick 2
- Right B -> joystick 3
2022-03-06 11:23:31 +01:00
Stephen Anthony
74b9eb2f73
Fix lockup on ZIP files containing errors ( fixes #871 ).
2022-03-05 18:47:12 -03:30
Stephen Anthony
24e491bcde
Update sqlite to latest release.
2022-03-01 17:07:33 -03:30
Thomas Jentzsch
633def0531
reapply color loss when switching TV format ( fixes #880 )
2022-02-28 09:32:41 +01:00
Thomas Jentzsch
95eb0966cd
Merge branch 'master' of https://github.com/stella-emu/stella
2022-02-26 19:04:28 +01:00
Thomas Jentzsch
12e1b3c04f
updated CDFJ+ driver description
2022-02-26 19:04:15 +01:00
Stephen Anthony
d482d671c4
Eliminate redundant code.
2022-02-26 13:23:31 -03:30
Thomas Jentzsch
3cfb79ca68
updated .gitignore
2022-02-25 11:17:38 +01:00
Thomas Jentzsch
a5e0d1f6ff
updated launcher doc
2022-02-25 11:01:19 +01:00