Thanks for getting back to me Cosmo and BadFurDay on the corner being white. I thought I was the only one for a second hahaha. Please let me know if you figure it out. I'm pretty noob when nut file coding except for moving around boxart lol
So if I take out all the following lines surrounding marquee's it goes away:
if ( my_config["enable_marquee"] == "Yes" )
{
local marquee = fe.add_artwork("marquee", flx*0.117, fly*0.086, flw*0.35, flh*0.14 );
marquee.trigger = Transition.EndNavigation;
marquee.skew_x = 11;
marquee.pinch_x = -2;
marquee.pinch_y = 3;
marquee.rotation = -1.5;
if ( my_config["enable_Lmarquee"] == "Yes" )
{
local shader = fe.add_shader( Shader.Fragment "bloom_shader.frag" );
shader.set_texture_param("bgl_RenderedTexture");
marquee.shader = shader;
}
}
else
{
local user = fe.add_image("user.jpg", flx*0.117, fly*0.086, flw*0.35, flh*0.14 );
user.trigger = Transition.EndNavigation;
user.skew_x = 11;
user.pinch_x = -2;
user.pinch_y = 3;
user.rotation = -1.5;
}
It must be something in there, then again for most consoles it is unwanted code when there are no marquees involved.