Options to --renderer aren't numbers but strings

This commit is contained in:
Nathaniel Case 2019-02-06 11:29:20 -05:00 committed by Mathieu Comandon
parent 2a6847c2c9
commit 118a20f192

View file

@ -36,7 +36,7 @@ class residualvm(Runner):
"option": "renderer",
"label": "Renderer",
"type": "choice",
"choices": (("OpenGL", "0"), ("OpenGL shaders", "1"), ("Software", "2")),
"choices": (("OpenGL", "opengl"), ("OpenGL shaders", "opengl_shaders"), ("Software", "software")),
"default": "OpenGL",
},
{