aboutsummaryrefslogtreecommitdiff
path: root/engines/tony/gfxcore.h
diff options
context:
space:
mode:
Diffstat (limited to 'engines/tony/gfxcore.h')
-rw-r--r--engines/tony/gfxcore.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/engines/tony/gfxcore.h b/engines/tony/gfxcore.h
index a1bf537e3b..17ad303fbd 100644
--- a/engines/tony/gfxcore.h
+++ b/engines/tony/gfxcore.h
@@ -544,12 +544,12 @@ private:
static RMGfxClearTask taskClear;
struct OTList {
- RMGfxPrimitive *prim;
- OTList *next;
+ RMGfxPrimitive *_prim;
+ OTList *_next;
OTList();
OTList(RMGfxPrimitive *pr) {
- prim = pr;
+ _prim = pr;
}
};