Changes between Version 2 and Version 3 of Ticket #12713


Ignore:
Timestamp:
07/02/21 19:09:45 (3 years ago)
Author:
Retro64
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #12713 – Description

    v2 v3  
    22
    33One - hacky - way would be a change in
    4 https://github.com/scummvm/scummvm/blob/cbe20d11553f8ca2f83084aa0fcf0547022dc5fb/engines/startrek/sound.cpp#L74
     4https://github.com/scummvm/scummvm/blob/cbe20d11553f8ca2f83084aa0fcf0547022dc5fb/engines/startrek/sound.cpp
    55
    66{{{
    77else if (!SearchMan.hasFile("voc/speech.mrk")) {
    88->
    9 else if (!SearchMan.hasFile("voc/speech.mrk") && !SearchMan.hasFile("../voc/speech.mrk")) {
     9// Defined in namespace
     10var vocPath = "voc";
     11...
     12
     13else if (!SearchMan.hasFile("voc/speech.mrk" && !SearchMan.hasFile("../voc/speech.mrk"))) {
     14...
     15}
     16
     17if (SearchMan.hasFile("../voc/speech.mrk")) {
     18  vocPath = "../voc";
     19}
     20
     21// All absolute paths "voc" need to be replaced by vocPath
    1022}}}
     23
     24For sure the different path leads to different absolute paths within the file