EDIT: Nevermind, oversight on my part. The emulator case "MAME" wasn't reading correctly, I had to change it to "mame" I guess the strings are case sensitive. Fixed now!
Hey so i'm trying to use "expert mode" and adding my own emulator under the switch statement.
This is the code block:
case Transition.ToNewList:
switch ( fe.list.name )
{
case "MAME":
OBJECTS.logo.file_name = "";
lt.set_bg_rgb( 155, 0, 40 );
lb.set_bg_rgb( 155, 0, 40 );
OBJECTS.gameListBox.set_selbg_rgb( 155, 0, 40 );
OBJECTS.gameListList2.set_rgb( 155, 0, 40 );
break;
case "NES":
OBJECTS.logo.file_name = "nes.png";
lt.set_bg_rgb( 0, 150, 136 );
lb.set_bg_rgb( 0, 150, 136 );
OBJECTS.gameListBox.set_selbg_rgb( 0, 150, 136 );
OBJECTS.gameListList2.set_rgb( 0, 150, 136 );
break;
case "retro snes":
OBJECTS.logo.file_name = "";
lt.set_bg_rgb( 91, 56, 150 );
lb.set_bg_rgb( 91, 56, 150 );
OBJECTS.gameListBox.set_selbg_rgb( 91, 56, 150 );
OBJECTS.gameListList2.set_rgb( 91, 56, 150 );
break;
}
However when I load the emulator the color value isn't correct. Once I switch to a different emulator it'll grab the correct color but that color is then used for every emulator. Help!
Thanks