diff options
author | eray orçunus <erayorcunus@gmail.com> | 2019-06-20 20:29:34 +0200 |
---|---|---|
committer | eray orçunus <erayorcunus@gmail.com> | 2019-06-20 23:42:57 +0200 |
commit | 4a3138f38440359e268ab0e012b00756b1613f8e (patch) | |
tree | 2b6de1bf8ece5b33ff3304767df9e2bc53de5fe1 /src/audio | |
parent | Big CPed update (diff) | |
parent | Merge pull request #27 from gennariarmando/master (diff) | |
download | re3-4a3138f38440359e268ab0e012b00756b1613f8e.tar re3-4a3138f38440359e268ab0e012b00756b1613f8e.tar.gz re3-4a3138f38440359e268ab0e012b00756b1613f8e.tar.bz2 re3-4a3138f38440359e268ab0e012b00756b1613f8e.tar.lz re3-4a3138f38440359e268ab0e012b00756b1613f8e.tar.xz re3-4a3138f38440359e268ab0e012b00756b1613f8e.tar.zst re3-4a3138f38440359e268ab0e012b00756b1613f8e.zip |
Diffstat (limited to 'src/audio')
-rw-r--r-- | src/audio/MusicManager.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/audio/MusicManager.cpp b/src/audio/MusicManager.cpp index c7a49186..cc86b584 100644 --- a/src/audio/MusicManager.cpp +++ b/src/audio/MusicManager.cpp @@ -16,8 +16,6 @@ int32 &gNumRetunePresses = *(int32*)0x650B80; wchar *pCurrentStation = (wchar*)0x650B9C; uint8 &cDisplay = *(uint8*)0x650BA1; -//WRAPPER void cMusicManager::DisplayRadioStationName(void) { EAXJMP(0x57E6D0); } - bool cMusicManager::PlayerInCar() { if (!FindPlayerVehicle()) @@ -44,6 +42,9 @@ bool cMusicManager::PlayerInCar() } } +#if 0 +WRAPPER void cMusicManager::DisplayRadioStationName(void) { EAXJMP(0x57E6D0); } +#else void cMusicManager::DisplayRadioStationName() { int8 pRetune; @@ -170,3 +171,4 @@ void cMusicManager::DisplayRadioStationName() CFont::DrawFonts(); } } +#endif |