summaryrefslogtreecommitdiff
path: root/dxr3spudecoder.h
diff options
context:
space:
mode:
Diffstat (limited to 'dxr3spudecoder.h')
-rw-r--r--dxr3spudecoder.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/dxr3spudecoder.h b/dxr3spudecoder.h
index 5f6e76d..939089a 100644
--- a/dxr3spudecoder.h
+++ b/dxr3spudecoder.h
@@ -31,7 +31,7 @@ typedef struct sDxr3SpuPalDescr
uint8_t index;
uint8_t trans;
- bool operator != (const sDxr3SpuPalDescr pd) const
+ bool operator != (const sDxr3SpuPalDescr &pd) const
{
return index != pd.index && trans != pd.trans;
};
@@ -53,7 +53,7 @@ struct sDxr3SpuRect
return y2 - y1 + 1;
};
- bool operator != (const sDxr3SpuRect r) const
+ bool operator != (const sDxr3SpuRect &r) const
{
return r.x1 != x1 || r.y1 != y1 || r.x2 != x2 || r.y2 != y2;
};