diff options
author | Eugene Sandulenko | 2019-09-14 22:45:17 +0200 |
---|---|---|
committer | Eugene Sandulenko | 2019-09-14 22:45:17 +0200 |
commit | f86f96e188e9dd7db7ad92f090a4203d060ced2d (patch) | |
tree | 52a29226a6db60b42235d7527cabdf6a78fedd02 /backends/networking | |
parent | 7414258dff92658f1163b9a0e762677021dedee3 (diff) | |
download | scummvm-rg350-f86f96e188e9dd7db7ad92f090a4203d060ced2d.tar.gz scummvm-rg350-f86f96e188e9dd7db7ad92f090a4203d060ced2d.tar.bz2 scummvm-rg350-f86f96e188e9dd7db7ad92f090a4203d060ced2d.zip |
NETWORKING: Clarify where to put wwwroot.zip
Diffstat (limited to 'backends/networking')
-rw-r--r-- | backends/networking/sdl_net/handlers/filesajaxpagehandler.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/backends/networking/sdl_net/handlers/filesajaxpagehandler.cpp b/backends/networking/sdl_net/handlers/filesajaxpagehandler.cpp index a5719bac63..94cc74103a 100644 --- a/backends/networking/sdl_net/handlers/filesajaxpagehandler.cpp +++ b/backends/networking/sdl_net/handlers/filesajaxpagehandler.cpp @@ -56,7 +56,7 @@ void FilesAjaxPageHandler::handle(Client &client) { // load stylish response page from the archive Common::SeekableReadStream *const stream = HandlerUtils::getArchiveFile(FILES_PAGE_NAME); if (stream == nullptr) { - HandlerUtils::setFilesManagerErrorMessageHandler(client, _("The page is not available without the resources. Make sure file wwwroot.zip from ScummVM distribution is available in extrapath.")); + HandlerUtils::setFilesManagerErrorMessageHandler(client, _("The page is not available without the resources. Make sure file wwwroot.zip from ScummVM distribution is available in 'themepath'.")); return; } |