diff options
author | D G Turner | 2019-11-25 11:37:13 +0000 |
---|---|---|
committer | D G Turner | 2019-11-25 11:37:13 +0000 |
commit | 74834e73f7c193e0c928362fc095b8e15f0796d9 (patch) | |
tree | 1ce44322f1f920ecd7130c31d44f6e9f6c06eda6 | |
parent | 2757722e6c36b30ae5acfc9f36f62d201bf243cf (diff) | |
download | scummvm-rg350-74834e73f7c193e0c928362fc095b8e15f0796d9.tar.gz scummvm-rg350-74834e73f7c193e0c928362fc095b8e15f0796d9.tar.bz2 scummvm-rg350-74834e73f7c193e0c928362fc095b8e15f0796d9.zip |
GLK: Fix Compilation on AmigaOS4
-rw-r--r-- | engines/glk/glk_api.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/glk/glk_api.cpp b/engines/glk/glk_api.cpp index 803e85818e..2ca81e9297 100644 --- a/engines/glk/glk_api.cpp +++ b/engines/glk/glk_api.cpp @@ -1060,7 +1060,7 @@ void GlkAPI::glk_sound_load_hint(uint snd, uint flag) { // No implementation } -schanid_t GlkAPI::glk_schannel_create_ext(glui32 rock, glui32 volume) { +schanid_t GlkAPI::glk_schannel_create_ext(uint rock, uint volume) { return _sounds->create(rock, volume); } |