diff options
author | Eugene Sandulenko | 2014-02-17 21:01:59 +0200 |
---|---|---|
committer | Eugene Sandulenko | 2014-02-17 21:01:59 +0200 |
commit | 8b9eb3148f1b2a350dbafd456f798c9ec9cb65ae (patch) | |
tree | 8806cfc2c4c960a9b66e9a244b545d02de68f948 | |
parent | a2bcea461f3a680befe19131d558bc6d5a461435 (diff) | |
download | scummvm-rg350-8b9eb3148f1b2a350dbafd456f798c9ec9cb65ae.tar.gz scummvm-rg350-8b9eb3148f1b2a350dbafd456f798c9ec9cb65ae.tar.bz2 scummvm-rg350-8b9eb3148f1b2a350dbafd456f798c9ec9cb65ae.zip |
FULLPIPE: Fix compiler warning
-rw-r--r-- | engines/fullpipe/scenes/scene27.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/fullpipe/scenes/scene27.cpp b/engines/fullpipe/scenes/scene27.cpp index 8623b2b9b3..0627f262d3 100644 --- a/engines/fullpipe/scenes/scene27.cpp +++ b/engines/fullpipe/scenes/scene27.cpp @@ -337,7 +337,7 @@ void sceneHandler27_wipeDo() { } } -bool sceneHandler27_batFallLogic(int batn) { +bool sceneHandler27_batFallLogic(uint batn) { Bat *bat = g_vars->scene27_bats[batn]; int y = (bat->currY - 458.0) * 0.4848484848484849 + 734.0; |