mirror of
https://git.rip/DMCA_FUCKER/re3.git
synced 2024-12-22 18:00:01 +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:
|
case STREAMED_SOUND_RADIO_TAXI:
|
||||||
return;
|
return;
|
||||||
default: {
|
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[];
|
extern wchar WideErrorString[];
|
||||||
|
|
||||||
string = TheText.Get("FEA_NON");
|
string = TheText.Get("FEA_NON");
|
||||||
|
|
Loading…
Reference in a new issue