1 # The launcher game starts projects in a separate python process
2 # with the -E flag, which prevents the nix set PYTHONPATH envvar
3 # from taking effect, preventing the loading of pygame_sdl2
4 --- a/launcher/game/project.rpy
5 +++ b/launcher/game/project.rpy
7 raise Exception("Python interpreter not found: %r", executables)
9 # Put together the basic command line.
10 - cmd = [ executable, "-EO", sys.argv[0] ]
11 + cmd = [ executable, "-O", sys.argv[0] ]