This commit is contained in:
kalaposfos13 2026-03-23 17:55:06 +01:00
parent eac679d082
commit 1b519dc964

View File

@ -186,7 +186,7 @@ public:
new GameController()}) {};
virtual ~GameControllers() = default;
GameController* operator[](const size_t& i) const {
if (i > 3) {
if (i > 4) {
UNREACHABLE_MSG("Index {} is out of bounds for GameControllers!", i);
}
return controllers[i];