ui: fix non-updating text2 alerts (#32256)

fix joystick
old-commit-hash: 3446de2b8e48ca9107746b23b9166332417d0733
This commit is contained in:
Justin Newberry
2024-04-19 12:03:23 -07:00
committed by GitHub
parent 4b2a00ef73
commit b9f6cb0120

View File

@@ -21,7 +21,7 @@ protected:
cereal::ControlsState::AlertStatus status;
bool equal(const Alert &other) const {
return text1 == other.text1 && other.text2 == other.text2 && type == other.type;
return text1 == other.text1 && text2 == other.text2 && type == other.type;
}
};