mirror of
https://github.com/CTCaer/RetroArch.git
synced 2025-02-04 18:47:09 +00:00
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
This commit is contained in:
parent
bc2cf0e215
commit
5061bc5a65
@ -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.
|
||||
|
Loading…
x
Reference in New Issue
Block a user