1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-09 12:50:35 +00:00

Merge pull request #50375 from Paulb23/code_edit_unit_tests

This commit is contained in:
Rémi Verschelde
2021-09-13 21:51:20 +02:00
committed by GitHub
11 changed files with 1166 additions and 6 deletions

View File

@@ -746,3 +746,7 @@ InputMap::InputMap() {
ERR_FAIL_COND_MSG(singleton, "Singleton in InputMap already exist.");
singleton = this;
}
InputMap::~InputMap() {
singleton = nullptr;
}