(RARCH_CONSOLE) Cleanup settings.c

This commit is contained in:
twinaphex 2014-07-27 03:43:25 +02:00
parent 43929afc21
commit 1c105faa8c
2 changed files with 4 additions and 6 deletions

View File

@ -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.

View File

@ -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);