aboutsummaryrefslogtreecommitdiff
path: root/engines/pink/objects/actions
diff options
context:
space:
mode:
authorEugene Sandulenko2018-06-29 09:37:44 +0200
committerEugene Sandulenko2018-06-29 09:37:44 +0200
commit66d8fca8b38cc8928e21ce30ffae1a05eb02c1b9 (patch)
treea68a4d71c8cb8c6024524b433e63e9fbe475d689 /engines/pink/objects/actions
parent7e82e748bfbc617d4298cc01fd0d3ac3e7a78592 (diff)
downloadscummvm-rg350-66d8fca8b38cc8928e21ce30ffae1a05eb02c1b9.tar.gz
scummvm-rg350-66d8fca8b38cc8928e21ce30ffae1a05eb02c1b9.tar.bz2
scummvm-rg350-66d8fca8b38cc8928e21ce30ffae1a05eb02c1b9.zip
PINK: Fix warnings
Diffstat (limited to 'engines/pink/objects/actions')
-rw-r--r--engines/pink/objects/actions/action_loop.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/pink/objects/actions/action_loop.cpp b/engines/pink/objects/actions/action_loop.cpp
index c54d06fac3..09bea7c6ec 100644
--- a/engines/pink/objects/actions/action_loop.cpp
+++ b/engines/pink/objects/actions/action_loop.cpp
@@ -55,7 +55,7 @@ void ActionLoop::toConsole() {
void ActionLoop::update() {
ActionCEL::update();
- int frame = _decoder.getCurFrame();
+ uint frame = _decoder.getCurFrame();
if (!_inLoop) {
if (frame < _startFrame) {