diff options
author | uruk | 2014-08-11 20:34:18 +0200 |
---|---|---|
committer | uruk | 2014-08-11 20:34:18 +0200 |
commit | e488da5757a44fed4fda5c15fb8ab4f37e0ee350 (patch) | |
tree | 67a42a27154b5b3f9c88684bf0c201d331011858 /engines/cge2 | |
parent | 02f3418d6f0382791c44dec8a5e232caa12109e9 (diff) | |
download | scummvm-rg350-e488da5757a44fed4fda5c15fb8ab4f37e0ee350.tar.gz scummvm-rg350-e488da5757a44fed4fda5c15fb8ab4f37e0ee350.tar.bz2 scummvm-rg350-e488da5757a44fed4fda5c15fb8ab4f37e0ee350.zip |
CGE2: Remove unnecessary commented out code.
Diffstat (limited to 'engines/cge2')
-rw-r--r-- | engines/cge2/vga13h.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/engines/cge2/vga13h.h b/engines/cge2/vga13h.h index 749374fd24..346d140e3f 100644 --- a/engines/cge2/vga13h.h +++ b/engines/cge2/vga13h.h @@ -62,7 +62,6 @@ public: FXP operator*(const FXP &x) const; FXP operator/(const FXP &x) const; - //int& operator = (int& a, const FXP& b) { return a = b.i; } friend int &operator+=(int &a, const FXP &b) { return a += b.trunc(); } friend int &operator-=(int &a, const FXP &b) { return a -= b.trunc(); } friend FXP &operator+=(FXP &a, const int &b) { a.v += b << 8; return a; } |