littleguy77
b8070bf651
Respect screen stretch setting for default mupen64plus-sa video plugin.
...
The default is rice. We have to explicitly check it here to apply the
proper patched behavior.
2023-09-12 17:22:53 -04:00
littleguy77
3bdd1e63db
Attempt to show FPS for all video plugins in mupen64plus-sa.
...
These doesn't seem to be enough, at least not in RK3566-X55.
Not sure if these settings still work in upstream mupen, but as long as
they still exist we should probably set them. If someone wants to debug
why they don't work in JELOS, it's one less thing to fix.
2023-09-12 17:22:53 -04:00
littleguy77
ed911cbcfe
Final cosmetic tweaks.
2023-09-12 17:22:53 -04:00
littleguy77
8da28713bb
Clean up file ops section.
...
- Move screen variables out of file section.
- Clean and create directories up front.
- Copy to GAMEDATA before copying to TMP.
2023-09-12 17:22:53 -04:00
littleguy77
bfca4c3f3e
Replace string literals with variable references.
2023-09-12 17:22:53 -04:00
littleguy77
c8042943ff
Consolidate file ops and param settings into logical groups.
...
File ops at the top. Keep related param settings together.
Make sure things like SIMPLESUFFIX and the TMP directory are set early
to avoid accidental premature use.
2023-09-12 17:22:53 -04:00
littleguy77
b90edcd233
Move invariant params outside of condition blocks.
...
Some values are the same regardless of condition. Others will simply be
ignored if they are not relevant, so no need to condition them.
2023-09-12 17:22:53 -04:00
littleguy77
6509944855
Split the param assignment onto multiple lines for readability.
2023-09-12 17:22:53 -04:00
littleguy77
5396a337b3
Pass mupen64plus-sa config by command line args.
...
No need for sed; just use mupen64plus-ui-console as it was intended,
passing the values by the command line.
More readable - shows exactly which setting is set. Also prevents the
wrong setting with a similar name from being set.
Also reduces the importance of the cfg file.
2023-09-12 17:22:53 -04:00
littleguy77
c4ed820547
Use += operator to concatenate strings.
...
Easier to read and slightly more rot resistant.
2023-09-12 17:22:53 -04:00
littleguy77
335eeef432
Use braces on variables as best practice.
2023-09-12 17:22:53 -04:00
littleguy77
6371e383e6
Tweak whitespace for clarity.
...
Clarify subsequent commits and reduce risk of merge conflicts.
2023-09-12 17:22:52 -04:00
fewtarius
d14d0bc4e0
Add pixel perfect option on RGB30, and enable it by default if it isn't already configured.
2023-09-09 10:12:10 +00:00
mason
f0b1240f7e
Add graphics backend feature to PPSSPP
2023-09-08 19:11:20 +00:00
Brooksytech
2fbd6a5c2d
Merge pull request #2029 from brooksytech/dev
...
Update Yuzu-sa
2023-09-08 06:06:28 -07:00
mason
b02807fcda
Update Yuzu-sa
2023-09-08 13:05:40 +00:00
fewtarius
877c9e0ef4
Bump PPSSPP sa and lr.
2023-09-08 13:01:34 +00:00
mason
309056ae09
Enable Vita3K support on AMD64 builds
2023-09-07 21:08:45 +00:00
fewtarius
e01306a5a5
* Add multitap and 4 way play to SNES/Genesis netplay.
...
* Ensure audio is routed to client 2 for GameBoy netplay.
* Update emulators and cores.
* Update Linux kernel to 6.4.15 (AMD64).
2023-09-07 10:27:54 +00:00
fewtarius
165f994bc1
* Rework profile bits so they are correctly named and sequenced.
...
* Drop deprecated device.config from AMD64.
* Add a platform quirk for AMD64.x
2023-09-04 10:46:11 +00:00
littleguy77
a90882cef5
Respect FPS setting for GLideN64 in mupen64plus-sa.
...
No need for sed; just use mupen64plus-ui-console as it was intended,
passing the values by the command line.
I couldn't seem to get FPS working for Rice and Glide64mk2 plugins, so I
left them commented out for now to avoid any confusion.
2023-09-01 09:24:28 -04:00
mason
149e946392
Start work on Vita3k
2023-08-31 22:29:10 +00:00
mason
09a46ad5b3
Start work on Vita3k
2023-08-31 22:16:59 +00:00
fewtarius
1a3ea79ea1
Merge pull request #1986 from fewtarius/dev
...
Fix missing librga in arm builds, and re-add managing RGA scaling to ES.
2023-08-29 08:43:34 -04:00
fewtarius
ad0f8831ce
Fix missing librga in arm builds, and re-add managing RGA scaling to ES.
2023-08-29 12:43:12 +00:00
mason
36e0427de1
Add virtual touchscreen input to citra-sa
2023-08-28 21:35:38 +00:00
mason
135fc94a6d
Update citra-sa, touchscreen working again.
2023-08-28 13:14:05 +00:00
fewtarius
6c683cda4d
Update PPSSPP.
2023-08-26 20:52:42 +00:00
fewtarius
c1de6ad382
Update emulators, cores, and moonlight.
2023-08-26 20:52:42 +00:00
fewtarius
30b1b4f3ef
Update CEMU, fix ES GPU profile bug.
2023-08-26 12:42:34 +00:00
fewtarius
0f71b9896b
Base distribution update to bringing JELOS up to more recent or to the latest software versions. Thanks in part to @CoreELEC and @archlinux.
2023-08-24 09:53:35 +00:00
Brooksytech
329949a82b
Merge pull request #1957 from brooksytech/dev
...
Rework flycast-sa, bump kernel to 6.1.47 on supported devices.
2023-08-23 13:44:08 -07:00
mason
9f53182aa1
Rework flycast-sa, bump kernel to 6.1.47 on supported devices.
2023-08-23 20:42:33 +00:00
littleguy77
259157a9ba
Honor Fast HLE (Mupen) choice for RSP plugin in mupen64plus-sa.
...
Prior to this, the script was always selecting Accurate HLE (CXD4)
regardless of the user's choice in Emulation Station. It was always
falling through to the default case. Now we properly catch the Fast HLE
choice.
Note that Accurate HLE (CXD4) is actually denoted in system.cfg with
"mle", not "cxd4", so that case was mislabeled for multiple reasons.
We still want CXD4 to be the default RSP plugin, which is why we only
fix the case labels and not the logic.
2023-08-22 22:09:03 -04:00
fewtarius
13b92db834
Merge pull request #1949 from fewtarius/dev
...
Split fuse 2.x and 3.x to allow compatibility with multiple apps.
2023-08-21 07:24:16 -04:00
fewtarius
0b68affa8b
Split fuse 2.x and 3.x to allow compatibility with multiple apps.
2023-08-21 11:23:15 +00:00
fewtarius
0f7c54de63
Merge pull request #1937 from fewtarius/dev
...
Updates and fixes - Emulators, Cores, Linux 6.4.11.
2023-08-17 17:34:25 -04:00
fewtarius
fa390fd351
Updates and fixes.
2023-08-17 14:46:48 +00:00
fewtarius
ca9c078fe9
Merge pull request #1935 from fewtarius/dev
...
Fix 32bit audio.
2023-08-16 12:42:20 -04:00
fewtarius
962dd36bd3
Fix 32bit audio.
2023-08-16 16:41:52 +00:00
mason
dfff231b93
Bump Yuzu-sa & Xemu-sa
2023-08-16 13:49:46 +00:00
fewtarius
95f128b5fc
Switch Retroarch and PPSSPP back to Alsa.
2023-08-15 23:19:33 +00:00
fewtarius
415f7b3379
Revert PPSSPP update.
2023-08-13 19:54:57 +00:00
Brooksytech
b7ccc8147a
Merge pull request #1923 from brooksytech/dev
...
Add support for NanoBoyAdvance SA
2023-08-13 05:45:22 -07:00
mason
a1258e1ece
Add support for NanoBoyAdance SA
2023-08-13 12:43:30 +00:00
fewtarius
ba2979fa22
Merge pull request #1922 from fewtarius/dev
...
Fix retroarch package issue preventing librga from being included as a dependency.
2023-08-13 06:38:51 -04:00
fewtarius
8ac712de79
Fix retroarch package issue preventing librga from being included as a dependency.
2023-08-13 10:37:18 +00:00
fewtarius
c5473f846d
Merge pull request #1917 from fewtarius/dev
...
Fix Fluidsynth service, deprecate SDL2-rotated, clean up packages.
2023-08-11 18:19:26 -04:00
fewtarius
65f45d02b3
Package cleanup.
2023-08-11 22:17:56 +00:00
fewtarius
e4b4c113c4
Merge pull request #1916 from fewtarius/dev
...
Fix up duckstation-sa.
2023-08-11 17:29:29 -04:00