Age | Commit message (Collapse) | Author |
|
Add core option to change axis saturation. Square bounds allow controllers that struggle to fully register diagonal deflections . Very helpful with switch joycons and some android controllers.
|
|
Add disk control interface v1 support
|
|
|
|
Update psxbios.c
|
|
|
|
Update
|
|
|
|
Access psx main memory using retro_memory_map
|
|
Add "Spu Irq" core option
|
|
|
|
cdrom: add missing BCD->int convert in cdrFreeze()
|
|
For some Eboot .PBP game images, when loading a savestate, a zlib error
like 'uncompress failed with -5 for block 5383, sector 86132' would be
output to stdout/stderr. The savestate would still be playable, though.
Traced it down to cdrFreeze() failing to convert cdr.Prev from BCD->int
when calling ReadTrack(). Note that the odd 'cdr.Prev[0]++;' line seems
to be someone's hacky way of forcing ReadTrack() to avoid skipping what
it thinks is a duplicate sector read.
|
|
gpulib: fix out-of-bounds reads in do_cmd_buffer()
|
|
When gpu.cmd_buffer[] is filling up, and the last 1 or 2 words
in it are the beginning of a new vram read/write cmd, do_cmd_buffer()
would access out-of-bounds, reading garbage pos/size data.
Fixes corrupted gfx in this PS1 .exe test utility:
https://github.com/PeterLemon/PSX/tree/master/CPUTest/CPU/LOADSTORE/LW
(This and all similar tests on Peter's site).
Note that gfx access in this utility is done entirely through cmds given
through GPUwriteData(), i.e. direct CPU->GP0 stores, not DMA.
|
|
|
|
Basic Guncon support
|
|
sbi support for multidisc pbp
|
|
same syntaxis as beetle-psx, name the sbi file after the pbp and append an underscore and the number of the disc at the end.
|
|
3DS: Switch from svc* to the thread* API
|
|
svcCreateThread doesn't fully set up thread vars, which causes
svcBreaks / crashes when calling certain functions -- reentrant ones,
for example. threadCreate, etc. are higher-level functions that do all
the correct setup and cleanup.
Since we're treating the thread structure as opaque, calling it an
int_32t seems OK.
|
|
3DS: Schedule threads on the default core
|
|
When creating a thread, pcsx was scheduling threads on core 1, which
is the system core. This is usually prevented by the system. Instead,
it should schedule threads on the default core, as suggested by
3dbrew: https://www.3dbrew.org/wiki/Multi-threading
> Games usually create threads using -2.
In the future, we may be able to schedule threads on core 2 on New 3DS
only, if we find it gives better performance.
This was preventing the CDDA thread from starting, which was
preventing CD Audio from playing.
|
|
update gpu_unai plugin
|
|
|
|
Stop calling utime on 3ds
|
|
The toolchain doesn't have utime defined, so these calls will fail.
|
|
Enable CHD on 3DS builds
|
|
I don't know what build errors were happening before, but this built
cleanly for me.
|
|
Re-enable unai on 3DS
|
|
Fix sound over-buffering on 3ds
|
|
With iTempo turned on, we generate a frame and a half of sound data
each frame, which causes dropped sound frames and noise.
It looks like GPH hacks are disabled for 3ds in other places, so
disabling it here too seemed like the correct fix.
|
|
It now builds properly, and is much much faster.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Added support for PSXONPSP660.bin and psx* named BIOS files
|
|
|
|
- backports gpu unai plugin from PCSX4ALL
- sync necessary files with notaz/master to allow building standalone app
|
|
iOS: support for building using buildbot recipe
|
|
Update 'libretro_core_options.h' to v1.3 format
|
|
|
|
|
|
Do not compile plugins when using the non-static build method
|
|
- This is meant for platforms that still uses the non-static build method to compile the libretro core (aka versions of retropie)
- The output file is still libretro.so to preserve any compatibility with existing script
- Using the static makefile is still recommended.
|
|
Sanitize gpu adv options and close plugins upon exiting core
|