SWORD1: PSX: American release should use british logo

This commit is contained in:
AndywinXp 2023-10-17 19:10:29 +02:00
parent 20dced9a1a
commit 3b6c35d041

View File

@ -2404,7 +2404,7 @@ void Control::initialiseControlPanel() {
if (SwordEngine::_systemVars.controlPanelMode != CP_DEATHSCREEN) { // NOT THE DEATH SCREEN ie. start game panel, normal control panel, or end of game
switch (SwordEngine::_systemVars.language) {
case BS1_ENGLISH:
if (SwordEngine::_systemVars.realLanguage == Common::EN_USA) {
if (!SwordEngine::isPsx() && SwordEngine::_systemVars.realLanguage == Common::EN_USA) {
srPanel = (Sprite *)_resMan->openFetchRes(SR_PANEL_AMERICAN);
} else {
srPanel = (Sprite *)_resMan->openFetchRes(SR_PANEL_ENGLISH);