···11+# The launcher game starts projects in a separate python process
22+# with the -E flag, which prevents the nix set PYTHONPATH envvar
33+# from taking effect, preventing the loading of pygame_sdl2
44+--- a/launcher/game/project.rpy
55++++ b/launcher/game/project.rpy
66+@@ -239,7 +239,7 @@
77+ raise Exception("Python interpreter not found: %r", executables)
88+99+ # Put together the basic command line.
1010+- cmd = [ executable, "-EO", sys.argv[0] ]
1111++ cmd = [ executable, "-O", sys.argv[0] ]
1212+1313+ cmd.append(self.path)
1414+ cmd.extend(args)