mirror of
https://git.rip/DMCA_FUCKER/re3.git
synced 2024-11-05 06:45:56 +00:00
Fix split second Radio Off text
This commit is contained in:
parent
14dcd8f04c
commit
040c6f9027
|
@ -1308,6 +1308,10 @@ cMusicManager::DisplayRadioStationName()
|
|||
case STREAMED_SOUND_RADIO_TAXI:
|
||||
return;
|
||||
default: {
|
||||
// Otherwise pausing-resuming game will show RADIO OFF, since radio isn't set yet
|
||||
if (m_nPlayingTrack == NO_TRACK && m_nFrontendTrack == NO_TRACK)
|
||||
return;
|
||||
|
||||
extern wchar WideErrorString[];
|
||||
|
||||
string = TheText.Get("FEA_NON");
|
||||
|
|
Loading…
Reference in a new issue