LibretroAdmin
e2c8e98be0
Buildfixes and warning fixes
2025-01-17 12:03:30 +01:00
LibretroAdmin
31b7812720
Function argument name standardization
2025-01-17 04:16:12 +01:00
LibretroAdmin
e982905eb4
content_get_subsystem_friendly_name - change function signature return
...
to size_t
2025-01-17 00:55:30 +01:00
LibretroAdmin
0b329018ee
Less string buffers and less string copies
2025-01-16 23:59:22 +01:00
LibretroAdmin
a5c9d9520f
* Use fill_pathname_basedir where possible
...
* Move static variable to only function where it's used
* Change signature of file_path.c function
2025-01-15 22:17:59 +01:00
LibretroAdmin
9da7af46c3
len variable/argument name standardization
2025-01-15 16:04:25 +01:00
LibretroAdmin
047e04ed3e
Standardize local len variable naming conventions
2025-01-15 15:00:12 +01:00
zoltanvb
31534438bc
Enable also alternative device names ( #17412 )
...
Enable input_device_device_display_name to also have alt_ variants.
Tests updated.
2025-01-14 16:19:05 +01:00
LibretroAdmin
47d888364d
Standardize len variables - argument should always be named 'len',
...
while local len variables should have '_' prefix
2025-01-13 21:53:49 +01:00
LibretroAdmin
bd413de842
Log messages are too small to hold entire path
2025-01-13 16:01:16 +01:00
Eric Warmenhoven
95dd1d8449
cloud sync: fix windows path issues ( #17375 )
2025-01-10 12:21:24 +01:00
LibretroAdmin
e40f405b97
Play it on the safe side - go back to some of the code
...
from before
2025-01-07 02:47:37 +01:00
Eric Warmenhoven
53d9452439
Change config_get_path/array return back to bool ( #17333 )
2025-01-02 14:35:33 +01:00
LibretroAdmin
33ec89306e
Fix savestate thumbnails - '.png' needs to be appended to the total
...
filepath, so fill_pathname can't be used since it would overwrite
the existing extension
2024-12-30 23:39:36 +01:00
LibretroAdmin
6be18bfee9
Standardize naming of local len variables
2024-12-30 14:27:24 +01:00
LibretroAdmin
1e656261b0
Local len variables need to have '_' prefix
2024-12-30 14:03:58 +01:00
LibretroAdmin
707f19640a
(task_content_disc.c) Use fill_pathname
2024-12-30 10:29:06 +01:00
LibretroAdmin
b4cf279b80
Fix gdi_find_track prototype
2024-12-30 10:13:05 +01:00
LibretroAdmin
56c63b8c19
Small cleanups - conventionalize char *s, size_t parameter usage
2024-12-30 09:44:40 +01:00
LibretroAdmin
3e6486db2b
Small cleanups (Task_database_cue.c)
2024-12-29 00:25:22 +01:00
LibretroAdmin
9d15900979
Small cleanups: * Prevent some unneccessary strlcpy calls and intermediary string copies * Name local length variables for strings '_len', parameter/argument 'len'
2024-12-28 22:22:07 +01:00
LibretroAdmin
18c85b5ccd
Cleanups -
...
* Less string copies
* Some general cleanups
* Add extra param to runloop_message_queue_push so we can pass size_t
of the message
* Consistent conventions for local variable usage for certain things
2024-12-27 15:13:45 +01:00
LibretroAdmin
ed58e4a8d8
Conventionalize len variables:
...
* In function arguments, use 'size_t len'
* Inside the function, use '_len'
* If you need a seciondary len variable inside the function, use '__len'
2024-12-27 05:51:33 +01:00
libretroadmin
5749a2179d
Use members from path_data directly and bypass functions
...
in gfx_thumbnail_path
2024-12-26 02:48:05 +01:00
libretroadmin
700b13654c
Some string cleanups
2024-12-25 19:18:45 +01:00
libretroadmin
44238e909f
Consistent viewport naming conventions
2024-12-24 22:50:51 +01:00
libretroadmin
8074a833aa
Cleanups/less string copies and indirection
2024-12-24 21:07:31 +01:00
libretroadmin
de8f979cb7
less string copies
2024-12-24 05:10:09 +01:00
libretroadmin
99c7e08445
Don't use string_trim_whitespace
2024-12-23 00:51:01 +01:00
libretroadmin
5ddb9b990c
Disable fetching Named_Logos for now - not only is it too much overhead
...
and bandwidth for our server but none of thse Named_Logos have been added to
any repos for now. We will also need to have settings for specifying how much
stuff we fetch at the same time (Named_Logos, Named_Snaps, Named_Titles, Named_Boxarts).
Trying to fetch all this stuff at the same time is prob a mistake
2024-12-21 17:59:59 +01:00
LibretroAdmin
739f2ff55c
Reduce calls to path_remove_extension - use fill_pathname instead ( #17270 )
...
* Reduce calls to path_remove_extension - use fill_pathname instead
* More fill_pathname usage
2024-12-20 21:40:58 -08:00
Zach Morris
b16f04de0a
Add Named_Logos ( #17216 )
...
* Draft: Add Named_Logos
* Allow selecting Content Logo as a thumbnail display
* Increase pl_thumbnail_download index
to 4 to match the 4 available thumb types
---------
Co-authored-by: Rob Loach <robloach@gmail.com>
2024-12-20 18:52:27 -08:00
libretroadmin
17fc55c762
fill_pathname_parent_dir_name - small cleanups
2024-12-19 21:05:43 +01:00
Eric Warmenhoven
bee0d2226f
cleanup: minor tidying of unused code in task_http ( #17251 )
2024-12-11 22:54:26 -08:00
Eric Warmenhoven
7b29062e96
cloud sync: small bug fixes around handling deleted files ( #17236 )
2024-12-07 00:59:05 -08:00
Alex Kiraly
0b05b1e3f4
Fix CloudSync on Windows, enable by default ( #16475 )
...
* Make paths portable for CloudSync when building manifest
* Enable CloudSync on Windows builds
* Fix "fetech server file" - Forgot to commit this, oops!
* Fix definition conflict with gzguts.h
* "Enable Cloud Sync for Windows UWP builds"
---------
Co-authored-by: WindowsDEV <WindowsDEV@WindowsDEV-VM.lan>
2024-11-25 09:47:27 -08:00
Eric Warmenhoven
b6f798655a
cloud sync: fix file resurrection ( #17204 )
2024-11-25 03:18:59 -08:00
libretroadmin
82e4504968
Revert "(pt. 2) static variables are initialized to '0' automatically as per C rules"
...
This reverts commit 47410df7a3d2480dd8fc7fb97cf00319ce5e9344.
2024-11-19 03:03:05 +01:00
libretroadmin
47410df7a3
(pt. 2) static variables are initialized to '0' automatically as per C rules
2024-11-18 15:59:46 +01:00
Eric Warmenhoven
a26f6f6b45
webdav: fixes for reauth and parallelism ( #17132 )
2024-10-29 12:03:46 -07:00
sonninnos
c847b02206
Integer overscale GPU screenshot crash fixes ( #17118 )
2024-10-26 06:45:45 -07:00
Joe Osborn
fbf2c70e0d
replay format extended to support external tools ( #17042 )
...
- replays now start each frame with the number of key events (8 bit
unsigned int, then key events) and the number of input events (16 bit
unsigned int, then the input events)
- this makes it possible to parse replay files without any core
loaded, and makes replays more portable if cores change their polling
strategies
- external tools can now parse replay files
- old (vsn 0) replays will still play back, but new (vsn 1) replays
will not play on old RA
- replay files grow faster now, with each input poll now taking 8
bytes instead of 2
2024-10-04 12:47:34 -07:00
Viačasłaŭ
3019b926c2
Fix typos ( #17068 )
2024-10-01 17:36:33 -07:00
Eric Warmenhoven
1211b2d56a
Fix steam build ( #17007 )
2024-09-16 13:15:19 -07:00
zoltanvb
05844c649f
Autoconfig extension with alternative name/vid/pid ( #16990 )
...
If there are several variants of a controller, but their button
layout is exactly the same, allow alternative identifiers, e.g.:
input_device_alt1
input_vendor_id_alt3
input_product_id_alt9
2024-09-12 11:50:46 -07:00
zoltanvb
8c2d2f5d74
Make individual thumbnail downloads obey filename match setting. ( #16826 )
2024-09-10 17:36:25 -07:00
Eric Warmenhoven
e38b9ff734
Fix scanning .chd files ( #16986 )
2024-09-10 15:47:37 -07:00
libretroadmin
5a539a31bd
Transfer structs/enums over to task_screenshot.c
2024-09-10 23:17:19 +02:00
libretroadmin
29f011acef
* Inline find_last_slash
...
* explore_load_icons - fill_pathname_slash is equivalent to usage
of strlen here, no need to call strlen
2024-09-10 16:02:06 +02:00
libretroadmin
f2ad4071bc
Buildfix for Android
2024-09-10 03:00:37 +02:00