diff options
author | Torbjörn Andersson | 2004-05-01 09:38:03 +0000 |
---|---|---|
committer | Torbjörn Andersson | 2004-05-01 09:38:03 +0000 |
commit | ca7b89d2a5e5c773140ee08650079ae0dc53e8a7 (patch) | |
tree | ac598c8c17f38afc9a6d1fd16d051423905e8f58 | |
parent | 6b39b875fc978bc416c8b36555afb5f753532fcc (diff) | |
download | scummvm-rg350-ca7b89d2a5e5c773140ee08650079ae0dc53e8a7.tar.gz scummvm-rg350-ca7b89d2a5e5c773140ee08650079ae0dc53e8a7.tar.bz2 scummvm-rg350-ca7b89d2a5e5c773140ee08650079ae0dc53e8a7.zip |
Fixed warning
svn-id: r13702
-rw-r--r-- | saga/music.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/saga/music.cpp b/saga/music.cpp index 845a0fa551..e0da366ed1 100644 --- a/saga/music.cpp +++ b/saga/music.cpp @@ -322,7 +322,7 @@ int Music::play(uint32 music_rn, uint16 flags) { if (RSC_LoadResource(rsc_ctxt, music_rn, &resource_data, &resource_size) != R_SUCCESS ) { - R_printf(R_STDERR, "SYSMUSIC_Play(): Resource load failed: %ld", + R_printf(R_STDERR, "SYSMUSIC_Play(): Resource load failed: %u", music_rn); return R_FAILURE; } |