diff options
| author | Jordi Vilalta Prat | 2010-06-26 15:48:03 +0000 | 
|---|---|---|
| committer | Jordi Vilalta Prat | 2010-06-26 15:48:03 +0000 | 
| commit | 063cef0c284cda74f6ad366182818ac4d3dfca83 (patch) | |
| tree | 9b0358b7bede862c83ea3d2586fa0b44b59aa22d /sound/null.cpp | |
| parent | 21831b61832060855017d5b30dc277eaa333aef8 (diff) | |
| download | scummvm-rg350-063cef0c284cda74f6ad366182818ac4d3dfca83.tar.gz scummvm-rg350-063cef0c284cda74f6ad366182818ac4d3dfca83.tar.bz2 scummvm-rg350-063cef0c284cda74f6ad366182818ac4d3dfca83.zip  | |
GUI: Add and improve some messages to translate
svn-id: r50324
Diffstat (limited to 'sound/null.cpp')
| -rw-r--r-- | sound/null.cpp | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/sound/null.cpp b/sound/null.cpp index 9be545ab76..556b96c14c 100644 --- a/sound/null.cpp +++ b/sound/null.cpp @@ -32,7 +32,7 @@ Common::Error NullMusicPlugin::createInstance(MidiDriver **mididriver, MidiDrive  MusicDevices NullMusicPlugin::getDevices() const {  	MusicDevices devices; -	devices.push_back(MusicDevice(this, _s(""), MT_NULL)); +	devices.push_back(MusicDevice(this, "", MT_NULL));  	return devices;  } @@ -50,7 +50,7 @@ public:  MusicDevices AutoMusicPlugin::getDevices() const {  	MusicDevices devices; -	devices.push_back(MusicDevice(this, _s(""), MT_AUTO)); +	devices.push_back(MusicDevice(this, "", MT_AUTO));  	return devices;  }  | 
