aboutsummaryrefslogtreecommitdiff
path: root/engines/cge2/vga13h.h
diff options
context:
space:
mode:
authoruruk2014-08-11 20:34:18 +0200
committeruruk2014-08-11 20:34:18 +0200
commite488da5757a44fed4fda5c15fb8ab4f37e0ee350 (patch)
tree67a42a27154b5b3f9c88684bf0c201d331011858 /engines/cge2/vga13h.h
parent02f3418d6f0382791c44dec8a5e232caa12109e9 (diff)
downloadscummvm-rg350-e488da5757a44fed4fda5c15fb8ab4f37e0ee350.tar.gz
scummvm-rg350-e488da5757a44fed4fda5c15fb8ab4f37e0ee350.tar.bz2
scummvm-rg350-e488da5757a44fed4fda5c15fb8ab4f37e0ee350.zip
CGE2: Remove unnecessary commented out code.
Diffstat (limited to 'engines/cge2/vga13h.h')
-rw-r--r--engines/cge2/vga13h.h1
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; }