This commit is contained in:
Talkashie
2025-08-19 18:32:59 -05:00
parent 28bd72a7e1
commit bc7e68dfd1
19 changed files with 97 additions and 97 deletions

View File

@@ -896,7 +896,7 @@ void InputMap::load_default() {
}
InputMap::InputMap() {
ERR_FAIL_COND_MSG(singleton, "Singleton in InputMap already exist.");
ERR_FAIL_COND_MSG(singleton, "Singleton in InputMap already exists.");
singleton = this;
}

View File

@@ -331,7 +331,7 @@ IP *IP::get_singleton() {
IP *(*IP::_create)() = nullptr;
IP *IP::create() {
ERR_FAIL_COND_V_MSG(singleton, nullptr, "IP singleton already exist.");
ERR_FAIL_COND_V_MSG(singleton, nullptr, "IP singleton already exists.");
ERR_FAIL_NULL_V(_create, nullptr);
return _create();
}