i'm sorry wtf was i doing with that commit???

was bro high??? tf was this about
This commit is contained in:
HJfod 2024-05-04 21:14:22 +03:00 committed by GitHub
parent ae6856f6aa
commit c48e8ad8d4
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -90,7 +90,7 @@ TextInput* TextInput::create(float width, std::string const& placeholder, std::s
}
void TextInput::textChanged(CCTextInputNode* input) {
if (m_onInput && input->getString()) {
if (m_onInput) {
m_onInput(input->getString());
}
}