diff options
author | RichieSams | 2013-09-22 15:02:58 -0500 |
---|---|---|
committer | RichieSams | 2013-09-22 15:10:23 -0500 |
commit | 79573d0331b108162149f00f47b208376be2b8a5 (patch) | |
tree | 8ae33a35c5dc42a3dbbe490126d28111e4705f8b /engines | |
parent | 9a5305a977b3b4c72c73196c4f67cee4d767fbbe (diff) | |
download | scummvm-rg350-79573d0331b108162149f00f47b208376be2b8a5.tar.gz scummvm-rg350-79573d0331b108162149f00f47b208376be2b8a5.tar.bz2 scummvm-rg350-79573d0331b108162149f00f47b208376be2b8a5.zip |
ZVISION: Fix shadowing in the Direction constructor
Diffstat (limited to 'engines')
-rw-r--r-- | engines/zvision/lever_control.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/zvision/lever_control.h b/engines/zvision/lever_control.h index b5677a269e..80fda4f5fd 100644 --- a/engines/zvision/lever_control.h +++ b/engines/zvision/lever_control.h @@ -48,7 +48,7 @@ private: }; struct Direction { - Direction(uint angle, uint toFrame) : angle(angle), toFrame(toFrame) {} + Direction(uint a, uint t) : angle(a), toFrame(t) {} uint angle; uint toFrame; |