Skip to content

Commit

Permalink
Merge pull request #527 from Wargus/Fix_typo
Browse files Browse the repository at this point in the history
Fix typo.
  • Loading branch information
Jarod42 authored Oct 5, 2023
2 parents 93a2554 + e05ab69 commit e181aae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/game/trigger.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ using CompareFunction = int (*)(int, int);
*/
static CompareFunction GetCompareFunction(std::string_view op)
{
if (op == "=" || op == "=") {
if (op == "==" || op == "=") {
return &CompareEq;
} else if (op == ">=") {
return &CompareGrEq;
Expand Down

0 comments on commit e181aae

Please sign in to comment.