diff options
| author | Max Horn | 2010-11-01 20:40:33 +0000 |
|---|---|---|
| committer | Max Horn | 2010-11-01 20:40:33 +0000 |
| commit | 3d5e2fa82093bba2492fc65e6f4ebd735907ea1e (patch) | |
| tree | 8fba8327b200d760c3928f67a21f775472704b60 /engines/hugo/file.cpp | |
| parent | 7d09121c712cdfd666f201c369ff5ba40366eec3 (diff) | |
| download | scummvm-rg350-3d5e2fa82093bba2492fc65e6f4ebd735907ea1e.tar.gz scummvm-rg350-3d5e2fa82093bba2492fc65e6f4ebd735907ea1e.tar.bz2 scummvm-rg350-3d5e2fa82093bba2492fc65e6f4ebd735907ea1e.zip | |
HUGO: Replace Utils::Warn() by warning()
svn-id: r54021
Diffstat (limited to 'engines/hugo/file.cpp')
| -rw-r--r-- | engines/hugo/file.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/hugo/file.cpp b/engines/hugo/file.cpp index 5374e09304..c3e59b19c9 100644 --- a/engines/hugo/file.cpp +++ b/engines/hugo/file.cpp @@ -268,7 +268,7 @@ sound_pt FileManager::getSound(int16 sound, uint16 *size) { // Allocate memory for sound or music, if possible sound_pt soundPtr = (byte *)malloc(s_hdr[sound].size); // Ptr to sound data if (soundPtr == 0) { - Utils::Warn("%s", "Low on memory"); + warning("Low on memory"); return 0; } |
