1
Themes / Re: At-The-Arcade Multi-Cab [Release] - Updated 20 February 2021
« on: August 28, 2021, 08:50:08 PM »
Does the layout have the option to show the display name, or show artwork based on the display name?
I have managed to get the display name into the info bar by replacing the info and enumerate code with:
Just wanted to check there isn't a way to do this already before I go hacking away any further
I have managed to get the display name into the info bar by replacing the info and enumerate code with:
Code: [Select]
function dname()
{
local current_display = fe.displays[fe.list.display_index];
return current_display.name;
}
{
// Current game out of total number of games
filter = fe.add_text( "[!dname]", x_filter, fly*0.917, flw*0.4, flh*0.1 );
filter.align = Align.Right;
filter.charsize = font_size-4;
filter.set_rgb(255, 120, 0);
}
Just wanted to check there isn't a way to do this already before I go hacking away any further
