mirror of
https://github.com/GTAmodding/re3.git
synced 2024-11-15 03:19:02 +00:00
Add radio off text
This commit is contained in:
parent
3d4791f291
commit
4afa7b86ae
3 changed files with 5 additions and 2 deletions
Binary file not shown.
|
@ -163,13 +163,13 @@ cMusicManager::DisplayRadioStationName()
|
|||
case CHATTERBOX: string = TheText.Get("FEA_FM8"); break;
|
||||
case USERTRACK: string = TheText.Get("FEA_FM9"); break;
|
||||
#ifdef RADIO_OFF_TEXT
|
||||
case RADIO_OFF: case POLICE_RADIO: string = TheText.Get("FEM_OFF"); break;
|
||||
case RADIO_OFF: case POLICE_RADIO: string = TheText.Get("FEA_FMN"); break;
|
||||
#endif
|
||||
default: return;
|
||||
};
|
||||
|
||||
#ifdef RADIO_OFF_TEXT
|
||||
if(pRetune == USERTRACK && !SampleManager.IsMP3RadioChannelAvailable()) { string = TheText.Get("FEM_OFF"); }
|
||||
if(pRetune == USERTRACK && !SampleManager.IsMP3RadioChannelAvailable()) { string = TheText.Get("FEA_FMN"); }
|
||||
#else
|
||||
if(pRetune > CHATTERBOX && !SampleManager.IsMP3RadioChannelAvailable()) { return; }
|
||||
#endif
|
||||
|
|
|
@ -8070,6 +8070,9 @@ INVERT PAD VERTICALLY
|
|||
[FEM_TWP]
|
||||
Toggle Waypoint
|
||||
|
||||
[FEA_FMN]
|
||||
RADIO OFF
|
||||
|
||||
{ end of file }
|
||||
|
||||
[DUMMY]
|
||||
|
|
Loading…
Reference in a new issue