From 3ea1ac6162e0d2257a16120d3ea11e8a1736946e Mon Sep 17 00:00:00 2001 From: Johnny Date: Thu, 16 Jun 2022 15:20:26 +0200 Subject: [PATCH] Ren'py Version number check message fix --- game/scripts/utility/devtools.rpy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/game/scripts/utility/devtools.rpy b/game/scripts/utility/devtools.rpy index 695f7641..eb196ac2 100644 --- a/game/scripts/utility/devtools.rpy +++ b/game/scripts/utility/devtools.rpy @@ -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