bzhxx / LCD-Game-Shrinker

This program permits to shrink MAME high resolution artwork and graphics for portable device running LCD-Game-Emulator.
GNU General Public License v3.0
38 stars 11 forks source link

Fixed windows compatibility #19

Closed ducalex closed 2 years ago

ducalex commented 2 years ago

It was failing when trying to fork itself because python, by default, is installed in a path with spaces and it breaks with os.system.

Changed: Replaced os.system() by subprocess.run()

This fixes running on Windows 10 natively (no WSL).