diff options
author | Andre Heider | 2009-09-20 12:33:03 +0000 |
---|---|---|
committer | Andre Heider | 2009-09-20 12:33:03 +0000 |
commit | 81bb484f01adaa586bd45d8c55b5e9d2c0a3a1a4 (patch) | |
tree | 8277af9bc0cc13b5e3337a8e85cc9524efa1a610 /backends | |
parent | cd1628f70d3e950cb1480a904a25eebd6724fea1 (diff) | |
download | scummvm-rg350-81bb484f01adaa586bd45d8c55b5e9d2c0a3a1a4.tar.gz scummvm-rg350-81bb484f01adaa586bd45d8c55b5e9d2c0a3a1a4.tar.bz2 scummvm-rg350-81bb484f01adaa586bd45d8c55b5e9d2c0a3a1a4.zip |
Fix compilation
svn-id: r44203
Diffstat (limited to 'backends')
-rw-r--r-- | backends/platform/wii/options.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/backends/platform/wii/options.cpp b/backends/platform/wii/options.cpp index a23829782b..a2f4b2ecf1 100644 --- a/backends/platform/wii/options.cpp +++ b/backends/platform/wii/options.cpp @@ -127,7 +127,7 @@ void WiiOptionsDialog::handleTickle() { if (fsf.isMounted(WiiFilesystemFactory::kDVD)) { _textDVDStatus->setLabel("DVD Mounted successfully"); } else { - if (fsf.failedToMount(kDVD)) + if (fsf.failedToMount(WiiFilesystemFactory::kDVD)) _textDVDStatus->setLabel("Error while mounting the DVD"); else _textDVDStatus->setLabel("DVD not mounted"); |