Ren'py Version number check message fix

This commit is contained in:
Johnny 2022-06-16 15:20:26 +02:00
parent e23ebf59ce
commit 3ea1ac6162
1 changed files with 1 additions and 1 deletions

View File

@ -1,7 +1,7 @@
init python early:
if renpy.version_tuple < (7,5,0,22061501):
raise RuntimeWarning("Your Ren'Py launcher is outdated, the current minimal requirement is 7.4.0.1006+\nPlease perform an update and try launching the game again.")
raise RuntimeWarning("Your Ren'Py launcher is outdated, the current minimal requirement is 7.5.0.22061501+\nPlease perform an update and try launching the game again.")
from renpy.uguu import glGetString, GL_VENDOR, GL_RENDERER, GL_VERSION