SCUMM: Adjust timings for English Sam & Max intro.
This commit is contained in:
parent
8ec3b93160
commit
aeb1a9c339
1 changed files with 15 additions and 0 deletions
|
@ -217,6 +217,17 @@ bool ScummEngine::handleNextCharsetCode(Actor *a, int *code) {
|
||||||
// We identify the broken up strings that need
|
// We identify the broken up strings that need
|
||||||
// adjustment by the upcoming text.
|
// adjustment by the upcoming text.
|
||||||
|
|
||||||
|
TimingAdjustment timingAdjustmentsEN[] = {
|
||||||
|
{ "It's just that", 100, 0 },
|
||||||
|
{ "you're TOO nice", 90, 0 },
|
||||||
|
{ "^unpredictable.", 170, 0 },
|
||||||
|
{ "Yikes!", 120, 0 },
|
||||||
|
{ "Huh?", 90, 0 },
|
||||||
|
{ "Why do you", 110, 0 },
|
||||||
|
{ "Maybe we can", 75, 0 },
|
||||||
|
{ "Mind if I drive?", 160, 0 }
|
||||||
|
};
|
||||||
|
|
||||||
TimingAdjustment timingAdjustmentsDE[] = {
|
TimingAdjustment timingAdjustmentsDE[] = {
|
||||||
{ "Und daf\x81r^", 110, 0 },
|
{ "Und daf\x81r^", 110, 0 },
|
||||||
{ "Es ist blo\xe1^", 120, 0 },
|
{ "Es ist blo\xe1^", 120, 0 },
|
||||||
|
@ -256,6 +267,10 @@ bool ScummEngine::handleNextCharsetCode(Actor *a, int *code) {
|
||||||
};
|
};
|
||||||
|
|
||||||
switch (_language) {
|
switch (_language) {
|
||||||
|
case Common::EN_ANY:
|
||||||
|
adjustments = timingAdjustmentsEN;
|
||||||
|
numAdjustments = ARRAYSIZE(timingAdjustmentsEN);
|
||||||
|
break;
|
||||||
case Common::DE_DEU:
|
case Common::DE_DEU:
|
||||||
adjustments = timingAdjustmentsDE;
|
adjustments = timingAdjustmentsDE;
|
||||||
numAdjustments = ARRAYSIZE(timingAdjustmentsDE);
|
numAdjustments = ARRAYSIZE(timingAdjustmentsDE);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue