From a02a367a6e64def47852481398ea9af659d22f82 Mon Sep 17 00:00:00 2001 From: Vulpovile Date: Mon, 3 Oct 2022 19:44:25 -0700 Subject: [PATCH] Fixed typo --- src/source/DataModelV2/LevelInstance.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/source/DataModelV2/LevelInstance.cpp b/src/source/DataModelV2/LevelInstance.cpp index 21c7e66..1be61d9 100644 --- a/src/source/DataModelV2/LevelInstance.cpp +++ b/src/source/DataModelV2/LevelInstance.cpp @@ -40,12 +40,12 @@ std::vector LevelInstance::getProperties() sprintf_s(scoreTxt, "%d", score); properties.push_back(createPGI("Gameplay", "InitialTimerValue", - "The ammount of time in seconds the player has to complete this level.\r\n\r\nPut 0 if time is limitless.", + "The amount of time in seconds the player has to complete this level.\r\n\r\nPut 0 if time is limitless.", (LPARAM)timerTxt, PIT_EDIT)); properties.push_back(createPGI("Gameplay", "InitialScoreValue", - "The ammount of points the player starts with.", + "The amount of points the player starts with.", (LPARAM)scoreTxt, PIT_EDIT)); return properties;