retrohub-org / retrohub

Retrogaming library frontend, built to be a highly customizable platform.
https://retrohub-org.github.io/
MIT License
110 stars 6 forks source link

Standardize `path_join` syntax for file paths #373

Closed rsubtil closed 2 months ago

rsubtil commented 3 months ago

Plenty of code still handles path concatenation manually (path + "/file.txt"). This has always been prone to issues, and Godot provides a more robust way to do so with path_join(...).

The codebase should be reviewed and any instances left converted to the new syntax.