That's the way I have chosen, the finished image I have then inserted in the update rpf and since then I always see my picture in the menu
void DrawBannerTexture(int banner)
{
char *Texture, *TextureDictionary;
if (banner == 1)
Texture = "neelix_first_one", TextureDictionary = "neelix_first_one";
DrawSprite(Texture, TextureDictionary, menuXCoord, 0.08f, 0.23f, 0.085f, 0, 255, 255, 255, 255);
}
case Main_Menu:
DrawBannerTexture(1);
addSubmenuOption("My Ped", Self_Options);
break;
void DrawBannerTexture(int banner)
{
char *Texture, *TextureDictionary;
if (banner == 1)
Texture = "neelix_first_one", TextureDictionary = "neelix_first_one";
DrawSprite(Texture, TextureDictionary, menuXCoord, 0.08f, 0.23f, 0.085f, 0, 255, 255, 255, 255);
}
case Main_Menu:
DrawBannerTexture(1);
addSubmenuOption("My Ped", Self_Options);
break;