match dedmen's suggested change

This commit is contained in:
Brett 2019-07-13 18:58:29 -06:00 committed by Brett
parent 292ba02439
commit 3088e0455b

View File

@ -45,7 +45,12 @@ class GVAR(alt): RscText {
class GVAR(speed): RscText { class GVAR(speed): RscText {
style = 1; style = 1;
colorText[] = {"(profileNamespace getVariable ['IGUI_TEXT_RGB_R',0])", "(profileNamespace getVariable ['IGUI_TEXT_RGB_G',1])", "(profileNamespace getVariable ['IGUI_TEXT_RGB_B',1])", "(profileNamespace getVariable ['IGUI_TEXT_RGB_A',0.8])"}; colorText[] = {
"(profileNamespace getVariable ['IGUI_TEXT_RGB_R',0])",
"(profileNamespace getVariable ['IGUI_TEXT_RGB_G',1])",
"(profileNamespace getVariable ['IGUI_TEXT_RGB_B',1])",
"(profileNamespace getVariable ['IGUI_TEXT_RGB_A',0.8])"
};
text = "9999"; text = "9999";
x = 6.3 * GUI_GRID_W + (profileNamespace getVariable ["IGUI_GRID_VEHICLE_X", (safezoneX + 0.5 * GUI_GRID_W)]); x = 6.3 * GUI_GRID_W + (profileNamespace getVariable ["IGUI_GRID_VEHICLE_X", (safezoneX + 0.5 * GUI_GRID_W)]);
y = 1.3 * GUI_GRID_H + (profileNamespace getVariable ["IGUI_GRID_VEHICLE_Y", (safezoneY + 0.5 * GUI_GRID_H)]); y = 1.3 * GUI_GRID_H + (profileNamespace getVariable ["IGUI_GRID_VEHICLE_Y", (safezoneY + 0.5 * GUI_GRID_H)]);