aboutsummaryrefslogtreecommitdiff
path: root/engines/teenagent/dialog.h
diff options
context:
space:
mode:
authorVladimir Menshakov2009-09-14 21:07:01 +0000
committerVladimir Menshakov2009-09-14 21:07:01 +0000
commit90eabcc885c4854f143bfe637c4205a2d563e450 (patch)
tree08491ffcd8e3aa438c6f3611c1622eb3eeb1e282 /engines/teenagent/dialog.h
parentc2ece5dc2b199e51f4b89522f29bcf3338ad3652 (diff)
downloadscummvm-rg350-90eabcc885c4854f143bfe637c4205a2d563e450.tar.gz
scummvm-rg350-90eabcc885c4854f143bfe637c4205a2d563e450.tar.bz2
scummvm-rg350-90eabcc885c4854f143bfe637c4205a2d563e450.zip
rewrote dialog parser, fixed color swapping.
svn-id: r44090
Diffstat (limited to 'engines/teenagent/dialog.h')
-rw-r--r--engines/teenagent/dialog.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/teenagent/dialog.h b/engines/teenagent/dialog.h
index 65da1dcc74..98774916b4 100644
--- a/engines/teenagent/dialog.h
+++ b/engines/teenagent/dialog.h
@@ -33,8 +33,8 @@ namespace TeenAgent {
class Scene;
class Dialog {
public:
- static uint16 pop(Scene *scene, uint16 addr, uint16 animation = 0, uint16 actor_animation = 0, byte color1 = 0xd1, byte color2 = 0xd0);
- static void show(Scene *scene, uint16 addr, uint16 animation = 0, uint16 actor_animation = 0, byte color1 = 0xd1, byte color2 = 0xd0);
+ static uint16 pop(Scene *scene, uint16 addr, uint16 animation1 = 0, uint16 animation2 = 0, byte color1 = 0xd1, byte color2 = 0xd0);
+ static void show(Scene *scene, uint16 addr, uint16 animation1 = 0, uint16 animation2 = 0, byte color1 = 0xd1, byte color2 = 0xd0);
};
} // End of namespace TeenAgent