From 5061bc5a65d8d4fac9cdefeaa9aaf8a511389441 Mon Sep 17 00:00:00 2001 From: "Steven M. Vascellaro" Date: Mon, 23 Apr 2018 09:32:46 -0400 Subject: [PATCH] Fix variable names for 'video_msg' A few variables for video message color/position were using the wrong variable name https://github.com/libretro/RetroArch/blob/master/configuration.h#L274-L279 --- retroarch.cfg | 21 +++++++++++---------- 1 file changed, 11 insertions(+), 10 deletions(-) diff --git a/retroarch.cfg b/retroarch.cfg index 36aae23fd0..dbcbb84ad4 100644 --- a/retroarch.cfg +++ b/retroarch.cfg @@ -248,19 +248,20 @@ # Offset for where messages will be placed on screen. Values are in range 0.0 to 1.0 for both x and y values. # [0.0, 0.0] maps to the lower left corner of the screen. -# video_message_pos_x = 0.05 -# video_message_pos_y = 0.05 +# video_msg_pos_x = 0.05 +# video_msg_pos_y = 0.05 -# Color for message. The value is treated as a hexadecimal value. -# It is a regular RGB hex number, i.e. red is "ff0000". -# video_message_color = ffffff +# Color for message. +# video_msg_color_r = +# video_msg_color_g = +# video_msg_color_b = # Background color for OSD messages. Red/Green/Blue values are from 0 to 255 and opacity is 0.0 to 1.0. -video_message_bgcolor_enable = false -video_message_bgcolor_red = 0 -video_message_bgcolor_green = 0 -video_message_bgcolor_blue = 0 -video_message_bgcolor_opacity = 1.0 +# video_msg_bgcolor_enable = false +# video_msg_bgcolor_red = 0 +# video_msg_bgcolor_green = 0 +# video_msg_bgcolor_blue = 0 +# video_msg_bgcolor_opacity = 1.0 # Allows libretro cores to set rotation modes. # Setting this to false will honor, but ignore this request.