aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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; }