Skip to content

Commit

Permalink
BLADERUNNER: Move Subtitles option further right
Browse files Browse the repository at this point in the history
In Spanish version the 'Designers Cut' translated option overlapped with Subtitles option
  • Loading branch information
antoniou79 authored and sev- committed Jan 6, 2019
1 parent 9be700c commit 178a48d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions engines/bladerunner/ui/kia_section_settings.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ KIASectionSettings::KIASectionSettings(BladeRunnerEngine *vm)
_speechVolume = new UISlider(_vm, sliderCallback, this, Common::Rect(180, 235, 460, 245), 101, 0);
_gammaCorrection = new UISlider(_vm, sliderCallback, this, Common::Rect(180, 260, 460, 270), 101, 0);
_directorsCut = new UICheckBox(_vm, checkBoxCallback, this, Common::Rect(180, 364, 270, 374), 0, false);
_subtitlesEnable = new UICheckBox(_vm, checkBoxCallback, this, Common::Rect(291, 364, 360, 374), 0, false);
_subtitlesEnable = new UICheckBox(_vm, checkBoxCallback, this, Common::Rect(311, 364, 380, 374), 0, false); // moved further to the right to avoid overlap with 'Designer's Cut' in some language versions (ESP)
_playerAgendaSelector = new UIImagePicker(_vm, 5);

_uiContainer->add(_musicVolume);
Expand Down Expand Up @@ -160,7 +160,7 @@ void KIASectionSettings::draw(Graphics::Surface &surface) {
_vm->_mainFont->drawColor(textLight, surface, 462, 261, 0x6EEE);

_vm->_mainFont->drawColor(textDesignersCut, surface, 192, 365, 0x7751);
_vm->_mainFont->drawColor(textSubtitles, surface, 303, 365, 0x7751);
_vm->_mainFont->drawColor(textSubtitles, surface, 323, 365, 0x7751); // moved further to the right to avoid overlap with 'Designer's Cut' in some language versions (ESP)

_playerAgendaSelector->drawTooltip(surface, _mouseX, _mouseY);
}
Expand Down

0 comments on commit 178a48d

Please sign in to comment.