RISCOS: Fix using filenames with spaces

This commit is contained in:
Cameron Cawley 2017-11-21 04:31:13 +00:00 committed by Thierry Crozat
parent b41ab980ec
commit 509b12de65

View file

@ -93,6 +93,9 @@ Common::String RISCOSFilesystemNode::toUnix(Common::String &path) {
case '/':
out.setChar('.', ptr);
break;
case '\xA0':
out.setChar(' ', ptr);
break;
default:
break;
}