1
0
mirror of https://github.com/libretro/RetroArch synced 2024-07-05 09:48:42 +00:00
Commit Graph

63675 Commits

Author SHA1 Message Date
libretroadmin
ab4d54cb70 Get rid of unused variable 2024-05-23 07:31:25 +02:00
libretroadmin
354c5afab4 (glslang) Simplifications - move nullptr to NULL 2024-05-23 07:25:52 +02:00
libretroadmin
0b29d52b67 (glslang) Further slimming down/cleanups 2024-05-23 07:25:51 +02:00
Eric Warmenhoven
8479d83a99 iOS/tvOS: Fix escaping the sandbox for jailbroken devices 2024-05-22 20:33:28 -07:00
Eric Warmenhoven
eb3adeaf87 Fix build for osx opengl 2024-05-22 20:22:14 -07:00
Eric Warmenhoven
7c899fe005 fix ios9 build 2024-05-22 19:34:52 -07:00
libretroadmin
d2b161ee86 (glslang) Get rid of all asserts 2024-05-23 03:58:54 +02:00
libretroadmin
9dffcdfc93 Slim down custom glslang more 2024-05-23 03:26:10 +02:00
libretroadmin
e0656d8ca3 (glslang) Buildfix 2024-05-23 01:56:17 +02:00
libretroadmin
e53a809e6d Slim down glslang 2024-05-23 01:53:15 +02:00
libretroadmin
a74675a718 Remove unneeded ENABLE_HLSL code from glslang 2024-05-23 01:25:37 +02:00
Eric Warmenhoven
79b71179a5 macOS/iOS/tvOS: enable text-to-speech using AVSpeechSynthesizer.
Fixes #16532.
2024-05-22 13:29:48 -07:00
Eric Warmenhoven
87b643f487 Apple: Correctly register for filetypes uniquely 2024-05-22 13:21:56 -07:00
Eric Warmenhoven
c1fec60f60 iOS/tvOS: fix keyboard handling for app store builds 2024-05-22 07:25:13 -07:00
Tomáš Kelemen (vudiq)
8dafa0ce0d add cast to void** to fix build with gcc14 2024-05-22 04:48:56 -07:00
Tomáš Kelemen (vudiq)
295de90327 add missing include to fix build with gcc14 2024-05-22 04:48:56 -07:00
Tomáš Kelemen (vudiq)
0f89425ed6 add missing include to fix build with gcc14 2024-05-22 04:48:56 -07:00
github-actions
8792d28f52 Fetch translations from Crowdin 2024-05-22 00:11:56 +00:00
Eric Warmenhoven
d24b7955a5 tvOS: Fix packaging by reverting the name 2024-05-20 22:29:01 -07:00
github-actions
f33f00ba05 Fetch translations from Crowdin 2024-05-21 00:11:56 +00:00
Electric Worry
fdd010aebc Fix clang error incompatible-pointer-types-discards-qualifiers 2024-05-20 09:44:55 -07:00
Electric Worry
b630e6b5f9 Memory leak: Dynamic allocation from msg_hash_get_help_us_enum was not freed. 2024-05-20 09:44:55 -07:00
Eric Warmenhoven
e9e5868a8f iOS/tvOS: Creation of App Store build configuraiton 2024-05-20 00:22:51 -07:00
Eric Warmenhoven
529d6f78d0 iOS/tvOS: Clean up Xcode project file 2024-05-19 21:50:31 -07:00
github-actions
00baa88731 Fetch translations from Crowdin 2024-05-20 00:12:07 +00:00
zoltanvb
b37debff13 Fix for scanning PSP ISOs (and probably few others) 2024-05-19 12:23:25 -07:00
Bernhard Schelling
e27fcf64a8 (Win32) Fix numlock/pause key release events
On Win32, the numlock and pause keys need special handling. But the existing code did only handle it correctly for pressing and not releasing. It separately called GetKeyState for the two keys which only returned true while pressing a key and not while releasing it. This then caused the releasing of the pause key to be treated as releasing the numlock key and vice versa. This fix handles releasing the two keys correctly.
2024-05-19 12:23:07 -07:00
Eric Warmenhoven
caeb3fafdc tvOS: Fix scaling for 720p 2024-05-19 12:22:33 -07:00
Eric Warmenhoven
329cf5cbff iOS/tvOS: define PACKAGE_VERSION to be App Store MARKETING_VERSION 2024-05-19 12:22:26 -07:00
github-actions
741e7f82af Fetch translations from Crowdin 2024-05-19 00:13:21 +00:00
aerisarn
fe5c9a37a5 Update README.md
Fix URL
2024-05-17 14:40:49 -07:00
e.canepa
448dea5beb UWP 4K fix: align MESA reading of ClientRect to retroarch procedure, this fixes max resolution being set to 1080p. As reading must be done inside an UI thread and is in fact an async operation which might delay frame generation, the reading itself is doen once and cached, give that changing resolution while the app is running is an unlikely corner-case use 2024-05-17 14:40:49 -07:00
Edoardo Canepa
e0537c0548 Align MESA to alpha-2-resfix
Remove wrong resolution special handling for OPENGL
2024-05-17 14:40:49 -07:00
Eric Warmenhoven
ee8d8b1689 iOS/tvOS: Post Apple App Store fixes
- both: default VRR true
- tvOS: default overlay off
- tvOS: default directory fix
- both: default language fix
- tvOS: jit support fix
2024-05-17 14:38:35 -07:00
Carlo Refice
fed2e10d97 Implement HDR readback 2024-05-17 14:10:29 -07:00
Rob Loach
ae84c590de
libretro: Fix documentation for RETRO_GET_MIDI_INTERFACE (#16541)
As pointed out by @bbbradsmith in https://github.com/libretro/libretro-common/issues/209 , `RETRO_ENVIRONMENT_GET_MIDI_INTERFACE` is a pointer to a struct, rather than a struct array. This updates the documentation to reflect that.

Fixes https://github.com/libretro/libretro-common/issues/209
2024-05-17 10:01:27 -07:00
Rob Loach
41db4b022a
vfs_implementation: Fix warning of unused include_hidden parameter (#16540)
This fixes a warning of the `include_hidden` parameter not being used outside of `_WIN32`.

```
vfs/vfs_implementation.c:1063:30: error: unused parameter ‘include_hidden’ [-Werror=unused-parameter]
 1063 |       const char *name, bool include_hidden)
      |                              ^
cc1: all warnings being treated as error
```
2024-05-17 08:12:33 -07:00
Rob Loach
395f925941
libretro-common: Fix redefinition warnings of _POSIX_C_SOURCE (#15748)
Small fix to only define `_POSIX_C_SOURCE` if it's not already defined.

```
rthreads/rthreads.c:25: warning: "_POSIX_C_SOURCE" redefined
```
2024-05-16 16:05:58 -04:00
github-actions
ec8358c783 Fetch translations from Crowdin 2024-05-16 00:12:17 +00:00
Jamiras
d3475686bd
fix hardcore acting as if it's enabled when it isn't (#16530) 2024-05-15 07:23:43 -07:00
Eric Warmenhoven
ce6dbcd7e8
macOS: Qt still builds, if you set QT_INSTALL directory correctly (#16527) 2024-05-14 19:51:45 -07:00
github-actions
e2961dfc37 Fetch translations from Crowdin 2024-05-15 00:12:15 +00:00
github-actions
c1a2e21447 Fetch translations from Crowdin 2024-05-14 00:12:21 +00:00
Eric Warmenhoven
81f7aecad4
macOS: use xcassets instead of icns file for app icon (#16524) 2024-05-13 12:04:05 -07:00
Tomáš Kelemen
2c96b97324
display reboot/shutdown message also when not saving config on exit (#16506)
the reboot / shutdown message should be displayed regardless if config
file is saved on exit or not.
2024-05-13 11:34:34 -07:00
rt001-hub
5e45b2330b
Update pixman-private.h (#16516)
patch to fix build issue with musl
https://lore.kernel.org/buildroot/569BA820.6040300@scalemp.com/
2024-05-13 07:29:50 -07:00
Viačasłaŭ Chalikin
9ad2cc2bc6
Fix crash when using threaded video (#16518)
for Mesa 23.2 and later
2024-05-13 07:24:51 -07:00
Eric Warmenhoven
04baed2aff
macOS: appstore: restore copying audio/video filters (#16521) 2024-05-13 07:24:45 -07:00
Eric Warmenhoven
7a44fb94a6
iOS: Display app icon in app icon picker in materialui (#16520) 2024-05-12 22:52:52 -07:00
github-actions
f3b6093941 Fetch translations from Crowdin 2024-05-13 00:12:34 +00:00