[nx::NcaHeader] Fix comparison typo

This commit is contained in:
jakcron 2018-03-21 20:29:08 +08:00
parent ed2e0f462d
commit cf2dc0f7d0

View file

@ -66,7 +66,7 @@ namespace nx
bool operator!=(const sSection& other) const bool operator!=(const sSection& other) const
{ {
return operator==(other); return !operator==(other);
} }
}; };