aboutsummaryrefslogtreecommitdiff
path: root/engines
diff options
context:
space:
mode:
authoruruk2014-06-22 19:28:55 +0200
committeruruk2014-06-22 19:28:55 +0200
commitc8ed838c054d743ec692d21e643717097f1681e5 (patch)
tree95b584dd338a4f2cd61413dda29dbf69e6889448 /engines
parent7b628c7ffc779f065fcd60caa2c1d1172460b9be (diff)
downloadscummvm-rg350-c8ed838c054d743ec692d21e643717097f1681e5.tar.gz
scummvm-rg350-c8ed838c054d743ec692d21e643717097f1681e5.tar.bz2
scummvm-rg350-c8ed838c054d743ec692d21e643717097f1681e5.zip
CGE2: Fix formatting in FXP.
Diffstat (limited to 'engines')
-rw-r--r--engines/cge2/vga13h.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/cge2/vga13h.h b/engines/cge2/vga13h.h
index 948c3ab9b3..13401751e9 100644
--- a/engines/cge2/vga13h.h
+++ b/engines/cge2/vga13h.h
@@ -61,8 +61,8 @@ public:
FXP (void): f(0), i(0) { }
FXP (int i0, int f0 = 0) : i(i0), f(0) { }
FXP& operator = (const int& x) { i = x; f = 0; return *this; }
- FXP operator + (const FXP& x) const { FXP y; y.Joined() = Joined()+x.Joined(); return y; }
- FXP operator - (const FXP& x) const { FXP y; y.Joined() = Joined()-x.Joined(); return y; }
+ FXP operator + (const FXP& x) const { FXP y; y.Joined() = Joined() + x.Joined(); return y; }
+ FXP operator - (const FXP& x) const { FXP y; y.Joined() = Joined() - x.Joined(); return y; }
FXP operator * (const FXP& x) const {
FXP y; long t;
y.i = i * x.i;