- Dec 8, 2017
- 104
- 191
Capitalization is always a mess with games produced on Windows, particularly HTML games (maybe also Ren'Py games, when images are not compiled into a single file). As scrumbles says, there can be a lot of different possibilities with the capitalization, but usually laziness dictates that all paths are lower-case.Why would you change all letters to lower-case in the first place?
I may have a good regex to replace all paths with lower-case paths into an HTML file, but I'd have to test it.
Code:
\bsrc="([^"]+)"
src="\L\1"