mirror of
https://github.com/CTCaer/RetroArch.git
synced 2024-12-13 13:28:49 +00:00
(RARCH_CONSOLE) Cleanup settings.c
This commit is contained in:
parent
43929afc21
commit
1c105faa8c
@ -368,7 +368,11 @@ static const float font_size = 32;
|
||||
|
||||
// Offset for where messages will be placed on-screen. Values are in range [0.0, 1.0].
|
||||
static const float message_pos_offset_x = 0.05;
|
||||
#ifdef RARCH_CONSOLE
|
||||
static const float message_pos_offset_y = 0.90;
|
||||
#else
|
||||
static const float message_pos_offset_y = 0.05;
|
||||
#endif
|
||||
// Color of the message.
|
||||
static const uint32_t message_color = 0xffff00; // RGB hex value.
|
||||
|
||||
|
@ -457,12 +457,6 @@ void config_set_defaults(void)
|
||||
g_settings.core_specific_config = default_core_specific_config;
|
||||
|
||||
#ifdef RARCH_CONSOLE
|
||||
|
||||
g_settings.video.msg_pos_x = 0.05f;
|
||||
g_settings.video.msg_pos_y = 0.90f;
|
||||
g_settings.video.aspect_ratio = -1.0f;
|
||||
|
||||
// g_extern
|
||||
g_extern.console.screen.gamma_correction = DEFAULT_GAMMA;
|
||||
g_extern.lifecycle_state |= (1ULL << MODE_AUDIO_CUSTOM_BGM_ENABLE);
|
||||
g_extern.lifecycle_state |= (1ULL << MODE_VIDEO_TRIPLE_BUFFERING_ENABLE);
|
||||
|
Loading…
Reference in New Issue
Block a user