Age | Commit message (Collapse) | Author | |
---|---|---|---|
2018-05-05 | libretro.c: Load memcard from file system | Malik Olivier Boussejra | |
2018-05-05 | Enable memcard 2 | Malik Olivier Boussejra | |
2018-04-25 | Fix region core option. Fixed value to match setting and removed harcoded ↵ | Joe Rmz | |
config value. | |||
2018-04-22 | Changed default clock speed to 100% from 57% | Kelduum Revaan | |
Default to 100% CPU speed as most hardware can handle it nowadays using the dynamic recompiler. If not, the option is in the advanced speed hacks menu, so in a logical place. | |||
2018-04-09 | Add missing libretro linker script | Aaron Kling | |
2018-04-09 | use logger instead | radius | |
2017-12-11 | checks arm64 properly now | Glenn | |
2017-12-10 | Fixed building for arm64 (iOS) | Glenn | |
2017-05-07 | Update libretro.c | Bryan Barnes | |
2017-05-07 | Merge pull request #120 from pjft/pjft-experimental | Twinaphex | |
Adding enable/disable dithering core option with support for Neon GPU | |||
2017-05-06 | Adding enable/disable dithering core option with support for Neon GPU | pjft | |
2017-04-26 | Search for the newest version of the BIOS first | LEGOAnimal22 | |
2017-04-24 | More clear HLE BIOS error message | Bryan Barnes | |
2017-04-09 | Turn min into macro | twinaphex | |
2017-04-09 | Merge pull request #113 from meepingsnesroms/master | Twinaphex | |
Remove outdated platforms | |||
2017-04-07 | Adding "Enable Vibration" Core Option to LibRetro | pjft | |
2017-04-07 | Move dummy functions | meepingsnesroms | |
2017-04-07 | Remove dead non retroarch platforms, prepare for second memcard | meepingsnesroms | |
2017-04-05 | These are needed to reset on systems without a keyboard. | meepingsnesroms | |
It is also not a bug that load state after pushing reset still resets, this is the only way to make it work for now. On mac it will actually crash the OS and make you reboot. | |||
2017-04-03 | Fix running on CTR: dyncache mmap doesn't specify MAP_FIXED anymore | Yuxuan Shui | |
2017-03-10 | libretro: Remove reset in retro_run() hack | Adrien Plazas | |
Removes a hack breaking deserialization when running retro_reset(), retro_unserialize() and retro_run() in this order, as it silently resets the core just after setting its state. | |||
2017-03-02 | define PATH_MAX if needed. | aliaspider | |
2017-03-02 | fix implicit-function-declaration warnings/errors. | aliaspider | |
2017-02-11 | Use disabled/enabled instead, like other core settings. | Sérgio Benjamim | |
2017-02-07 | Fix buggy option being on by default | meepingsnesroms | |
2017-01-24 | Revert "return false if info is NULL inside retro_load_game" | orbea | |
2017-01-24 | Merge pull request #98 from ilag11111/cheatSupport | meepingsnesroms | |
Enable support for multiline cheats. | |||
2017-01-24 | Cleanup a bit more. | iLag | |
2017-01-24 | Enable support for multiline cheats. All non hexdec characters will be read ↵ | iLag | |
as delimiters and reformatted for PCSX's preferred format. | |||
2017-01-24 | return false if info is NULL inside retro_load_game | orbea | |
2017-01-23 | Add option to display bootlogo | meepingsnesroms | |
2017-01-22 | Fix crash on restart from menu | meepingsnesroms | |
2016-12-22 | Do some light multitap cleanup | Andrew | |
After seeing the regressions from multitap I took a quick look at the code, and there's quite a bit of cleanup needed. This fixes the initial really obvious stuff, a useless copy and a duplicate in_keystate that can cause compilation issues, along with bringing styling closer to the pcsx standard so it's a bit more readable. The multitap changeset also seems to have been done with an editor that mangled line endings, I'll address that in a followup commit. | |||
2016-12-19 | fix multitap and analog | alexis-puska | |
2016-12-09 | Report git version with library_version | Gregor Richards | |
2016-11-26 | enable dynarec core - was hardcoded to off - fixes #78 | Jools Wills | |
2016-10-11 | Fixed analog stick ranges to be [0, 255] | Nick Rivera | |
2016-09-28 | Fix software buffer | Francisco José García García | |
2016-09-28 | Add support for software framebuffer | Francisco José García García | |
2016-09-27 | (Vita) Fix deinit bug | Francisco José García García | |
2016-09-26 | Fix build error about undefined reference to `deinit_vita_mmap' | Sunguk Lee | |
``` frontend/libretro.o: In function `retro_deinit': libretro.c:(.text+0x3769): undefined reference to `deinit_vita_mmap' collect2: error: ld returned 1 exit status make: *** [pcsx_rearmed_libretro.so] Error 1 ``` Introduced #68 | |||
2016-09-26 | (VITA) Dynarec working | Francisco José García García | |
2016-09-21 | Update libretro.c | Francisco José García García | |
2016-09-21 | Merge branch 'mainline' into libretro | notaz | |
2016-09-19 | drc: try to support w^x platforms like iOS | notaz | |
untested... | |||
2016-09-06 | (VITA) I think that is not VM Memory and do some alignment | frangarcj | |
2016-09-06 | (VITA) Some dynarec | frangarcj | |
2016-08-03 | Please, don't use for loop initial declarations because it forces us to use ↵ | vanfanel | |
higher C std | |||
2016-07-30 | libretro: Split update_controller_port_device() | Adrien Plazas | |
Split update_controller_port_device() into update_controller_port_variable() updating the controllers from the variables, update_controller_port_device() updating the controllers from retro_set_controller_port_device() and controller_port_variable() sharing getting the controller variable between the two. Avoid setting to PSE_PAD_TYPE_NONE controllers whose variable is set to 'default' when updating them. | |||
2016-07-30 | libretro: Check 'environ_cb' in controller setters | Adrien Plazas | |
Check that 'environ_cb' is valid before using it in update_multitap() and update_controller_port_device() as they may be called from retro_set_controller_port_device() before 'environ_cb' is set. |