Author Topic: Game info in bottom frame - How to display system under game title name  (Read 1970 times)

drewjbx1

  • Newbie
  • *
  • Posts: 9
    • View Profile
How is this achieved.. I tried to find something in the layout.nut file but no luck... from a robospin layout. What code is used in the nut file?
For collections this is preferred to see all the different versions of 1 game. Any help would be great..
« Last Edit: February 05, 2018, 01:47:42 PM by drewjbx1 »

BadFurDay

  • Full Member
  • ***
  • Posts: 82
    • View Profile
Re: Game info in bottom frame - How to display system under game title name
« Reply #1 on: February 06, 2018, 01:38:55 AM »
I've been using this code:

</ label="Enable system logos", help="Select system logos", options="Yes,No", order=18 /> enable_slogos="Yes";

//System Logos
if ( my_config["enable_slogos"] == "Yes") 
{
local slogos = fe.add_image("slogos/[Emulator]", flx*0.02, fly*0.913, flw*0.08, flh*0.05 );
slogos.preserve_aspect_ratio = true;
slogos.trigger = Transition.EndNavigation;
}      

Just add this to your layout then extract the attached zip file to the layout folder and you can have the proper logos, just need to play with the x/y/w/h values to get it right in your theme.