mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-14 02:38:37 +12:00
Compilation fix, be_t fix
+ CellWebBrowserConfig2 struct
This commit is contained in:
parent
225dba754d
commit
feec20ac3e
3 changed files with 76 additions and 2 deletions
|
@ -152,6 +152,12 @@ public:
|
|||
|
||||
be_t& operator = (const be_t& right) = default;
|
||||
|
||||
be_t& operator = (const be_t<const T, const T2>& right)
|
||||
{
|
||||
m_data = right.ToBE();
|
||||
return *this;
|
||||
}
|
||||
|
||||
template<typename T1> be_t& operator += (T1 right) { return *this = T(*this) + right; }
|
||||
template<typename T1> be_t& operator -= (T1 right) { return *this = T(*this) - right; }
|
||||
template<typename T1> be_t& operator *= (T1 right) { return *this = T(*this) * right; }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue