Changes between Initial Version and Version 1 of Ticket #12713


Ignore:
Timestamp:
07/02/21 18:31:00 (3 years ago)
Author:
Retro64
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #12713 – Description

    initial v1  
    11When installing the GOG version or browsing the CD version, the voc folder is on the same level as the language folders. All localizations access this parent folder in order to use use the same voc files. Currently the engine searches - naturally - for the voc files in the root folder of each language. For sure the files can be copied redundant into each folder or a symlink might be used within *NIX systems to get rid of the redundant files, but an option to search the parent folder for voc folder or a config options to configure the path to the voc folders might be a useful feature for multi-language game support.
     2
     3One - hacky - way would be a change in
     4https://github.com/scummvm/scummvm/blob/cbe20d11553f8ca2f83084aa0fcf0547022dc5fb/engines/startrek/sound.cpp#L74
     5
     6else if (!SearchMan.hasFile("voc/speech.mrk")) {
     7->
     8else if (!SearchMan.hasFile("voc/speech.mrk") && !SearchMan.hasFile("../voc/speech.mrk")) {