From 97e340b5a757c473650202c8cf26c6738e7c28ca Mon Sep 17 00:00:00 2001 From: Misa Date: Fri, 3 Apr 2020 21:15:30 -0700 Subject: [PATCH] Fix typo "Your have unlocked" to "You have unlocked" Looks like this was copy-pasted for every single unlock message, too. Either everyone is THAT blind, or everyone is too lazy, or both. --- desktop_version/src/titlerender.cpp | 10 +++++----- mobile_version/src/includes/render.as | 10 +++++----- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/desktop_version/src/titlerender.cpp b/desktop_version/src/titlerender.cpp index b412f14e..98469ca7 100644 --- a/desktop_version/src/titlerender.cpp +++ b/desktop_version/src/titlerender.cpp @@ -1077,35 +1077,35 @@ void titlerender() { graphics.bigprint( -1, 45, "Congratulations!", tr, tg, tb, true, 2); - graphics.Print( -1, 125, "Your have unlocked", tr, tg, tb, true); + graphics.Print( -1, 125, "You have unlocked", tr, tg, tb, true); graphics.Print( -1, 135, "a new Time Trial.", tr, tg, tb, true); } else if (game.currentmenuname == "unlocktimetrials") { graphics.bigprint( -1, 45, "Congratulations!", tr, tg, tb, true, 2); - graphics.Print( -1, 125, "Your have unlocked some", tr, tg, tb, true); + graphics.Print( -1, 125, "You have unlocked some", tr, tg, tb, true); graphics.Print( -1, 135, "new Time Trials.", tr, tg, tb, true); } else if (game.currentmenuname == "unlocknodeathmode") { graphics.bigprint( -1, 45, "Congratulations!", tr, tg, tb, true, 2); - graphics.Print( -1, 125, "Your have unlocked", tr, tg, tb, true); + graphics.Print( -1, 125, "You have unlocked", tr, tg, tb, true); graphics.Print( -1, 135, "No Death Mode.", tr, tg, tb, true); } else if (game.currentmenuname == "unlockflipmode") { graphics.bigprint( -1, 45, "Congratulations!", tr, tg, tb, true, 2); - graphics.Print( -1, 125, "Your have unlocked", tr, tg, tb, true); + graphics.Print( -1, 125, "You have unlocked", tr, tg, tb, true); graphics.Print( -1, 135, "Flip Mode.", tr, tg, tb, true); } else if (game.currentmenuname == "unlockintermission") { graphics.bigprint( -1, 45, "Congratulations!", tr, tg, tb, true, 2); - graphics.Print( -1, 125, "Your have unlocked", tr, tg, tb, true); + graphics.Print( -1, 125, "You have unlocked", tr, tg, tb, true); graphics.Print( -1, 135, "the intermission levels.", tr, tg, tb, true); }else if (game.currentmenuname == "playerworlds") { diff --git a/mobile_version/src/includes/render.as b/mobile_version/src/includes/render.as index 3e6b66b4..72dd7872 100644 --- a/mobile_version/src/includes/render.as +++ b/mobile_version/src/includes/render.as @@ -688,27 +688,27 @@ public function titlerender(key:KeyPoll, dwgfx:dwgraphicsclass, map:mapclass, ga }else if (game.currentmenuname == "unlocktimetrial") { dwgfx.bigprint( -1, 45, "Congratulations!", tr, tg, tb, true, 2); - dwgfx.print( -1, 125, "Your have unlocked", tr, tg, tb, true); + dwgfx.print( -1, 125, "You have unlocked", tr, tg, tb, true); dwgfx.print( -1, 135, "a new Time Trial.", tr, tg, tb, true); }else if (game.currentmenuname == "unlocktimetrials") { dwgfx.bigprint( -1, 45, "Congratulations!", tr, tg, tb, true, 2); - dwgfx.print( -1, 125, "Your have unlocked some", tr, tg, tb, true); + dwgfx.print( -1, 125, "You have unlocked some", tr, tg, tb, true); dwgfx.print( -1, 135, "new Time Trials.", tr, tg, tb, true); }else if (game.currentmenuname == "unlocknodeathmode") { dwgfx.bigprint( -1, 45, "Congratulations!", tr, tg, tb, true, 2); - dwgfx.print( -1, 125, "Your have unlocked", tr, tg, tb, true); + dwgfx.print( -1, 125, "You have unlocked", tr, tg, tb, true); dwgfx.print( -1, 135, "No Death Mode.", tr, tg, tb, true); }else if (game.currentmenuname == "unlockflipmode") { dwgfx.bigprint( -1, 45, "Congratulations!", tr, tg, tb, true, 2); - dwgfx.print( -1, 125, "Your have unlocked", tr, tg, tb, true); + dwgfx.print( -1, 125, "You have unlocked", tr, tg, tb, true); dwgfx.print( -1, 135, "Flip Mode.", tr, tg, tb, true); }else if (game.currentmenuname == "unlockintermission") { dwgfx.bigprint( -1, 45, "Congratulations!", tr, tg, tb, true, 2); - dwgfx.print( -1, 125, "Your have unlocked", tr, tg, tb, true); + dwgfx.print( -1, 125, "You have unlocked", tr, tg, tb, true); dwgfx.print( -1, 135, "the intermission levels.", tr, tg, tb, true); }