summaryrefslogtreecommitdiffstats
path: root/src/core/config.h
diff options
context:
space:
mode:
authorerorcun <erayorcunus@gmail.com>2021-02-02 03:31:29 +0100
committerGitHub <noreply@github.com>2021-02-02 03:31:29 +0100
commit1eb77c4d6d758b8efcc229c0b7056e6974dbb700 (patch)
tree73612989f5979a41d58319429723301efb3710e2 /src/core/config.h
parentAdd radio off text (diff)
parentOverhaul MusicManager - fix radio bugs, scroll to prev station, radio off text (diff)
downloadre3-1eb77c4d6d758b8efcc229c0b7056e6974dbb700.tar
re3-1eb77c4d6d758b8efcc229c0b7056e6974dbb700.tar.gz
re3-1eb77c4d6d758b8efcc229c0b7056e6974dbb700.tar.bz2
re3-1eb77c4d6d758b8efcc229c0b7056e6974dbb700.tar.lz
re3-1eb77c4d6d758b8efcc229c0b7056e6974dbb700.tar.xz
re3-1eb77c4d6d758b8efcc229c0b7056e6974dbb700.tar.zst
re3-1eb77c4d6d758b8efcc229c0b7056e6974dbb700.zip
Diffstat (limited to 'src/core/config.h')
-rw-r--r--src/core/config.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/core/config.h b/src/core/config.h
index 329d70b9..f64a7602 100644
--- a/src/core/config.h
+++ b/src/core/config.h
@@ -306,8 +306,8 @@ enum Config {
// Hud, frontend and radar
#define PC_MENU
-
#define FIX_RADAR // use radar size from early version before R* broke it
+#define RADIO_OFF_TEXT // Won't work without FIX_BUGS
#ifndef PC_MENU
# define PS2_MENU
@@ -376,6 +376,7 @@ static_assert(false, "SUPPORT_XBOX_SCRIPT and SUPPORT_MOBILE_SCRIPT are mutually
#define FREE_CAM // Rotating cam
// Audio
+#define RADIO_SCROLL_TO_PREV_STATION // Won't work without FIX_BUGS
#define AUDIO_CACHE // cache sound lengths to speed up the cold boot
//#define PS2_AUDIO_PATHS // changes audio paths for cutscenes and radio to PS2 paths (needs vbdec on MSS builds)
//#define AUDIO_OAL_USE_SNDFILE // use libsndfile to decode WAVs instead of our internal decoder
@@ -462,6 +463,7 @@ static_assert(false, "SUPPORT_XBOX_SCRIPT and SUPPORT_MOBILE_SCRIPT are mutually
#undef BUTTON_ICONS
#undef FIX_RADAR
+#undef RADIO_OFF_TEXT
#undef MAP_ENHANCEMENTS
#undef MUCH_SHORTER_OUTRO_SCREEN
@@ -490,4 +492,6 @@ static_assert(false, "SUPPORT_XBOX_SCRIPT and SUPPORT_MOBILE_SCRIPT are mutually
#undef IMPROVED_CAMERA
#undef FREE_CAM
#undef BIG_IMG
+
+#undef RADIO_SCROLL_TO_PREV_STATION
#endif