• Hey Guest! Ever feel like entering a Game Jam, but the time limit is always too much pressure? We get it... You lead a hectic life and dedicating 3 whole days to make a game just doesn't work for you! So, why not enter the GMC SLOW JAM? Take your time! Kick back and make your game over 4 months! Interested? Then just click here!

SOLVED "get_save_filename" file extension case

quattj

Member
I am using get_save_filename in Windows, and it is making the file extension for my save file in all caps. I am also using get_open_filename, and again, the extension is in all caps. Is there a way to force it to use lower case for the file extension?
 

quattj

Member
Oops, never mind. My test file already had an all caps extension, and I mindlessly clicked it and added some extra text before saving. With another file with a lower case extension, it's fine. And it's fine if I manually type it as well. Bed time!
 

Tyg

Member
can also use something like fname = string_lower("MyFile.tXt") to force the string to lower case "myfile.txt" :)
 
Top