diff --git a/BeefySysLib/util/Hash.h b/BeefySysLib/util/Hash.h index 46eb44cb..7353689a 100644 --- a/BeefySysLib/util/Hash.h +++ b/BeefySysLib/util/Hash.h @@ -62,6 +62,14 @@ public: { return StrFormat("%lX%lX", mHigh, mLow); } + + Val128 operator+(int rLow) + { + Val128 result; + result.mLow += mLow + rLow; + result.mHigh = mHigh; + return result; + } }; static bool operator!=(const Val128& l, int rLow)