Support and General Use > Theming and Appearance Customization
Changing the Splash Screen on New Builds vs Last Year's
cool_walking_:
I don't really know, I'll have to set up a build environment and fiddle around. Someone else can probably help you in the meantime though.
Did you leave the filename for the 320x240 bitmap the same (i.e. rockboxlogo.320.98.16.bmp) ?
johnnyhaggis:
Yes I did - however, I discovered what the problem is - I'm a complete idiot and was working late at night while my brain was asleep - I forgot to add the compiled rockbox.ipod file I had just made and thus was just using the regular daily build - duh...
So the  320x240 image works just like it used to - however that means I still have the problem of having the cyan horizontal bar at the top of the screen.
I'm pretty sure this has to do with the positioning instruction for the original logo image, because the original logo leaves exactly that much space at the top of the screen, and the background colour is cyan. Â My 320x240 logo is probably just shifted down a bit, leaving space at the top.
So now my two questions are -
1) where can I find/change the positioning instructions for the boot logo so I can center it, and
2) How do I change the background colour for the splash screen?
Thanks!
*** EDIT(a few hours later)
Ah - I found the solution to the positioning problem
In the misc.c file in the source you have to replace
lcd_bitmap(rockboxlogo, 0, 10,
with
lcd_bitmap(rockboxlogo, 0, 0,
The second figure being the vertial position of the logo.
That makes the background colour question somewhat obsolete since my logo now covers it, however I'm still curious and clueless as to changing the background colour on the splash - I think I'll start a new thread since I have a different question that sort of elates to that anyhow.
Thanks for your help!
Job Van Dam:
I've never found out how to change the background color then again I never needed to.
Another thing I alter on the splash screen is the version info at the bottom:
In the misc.c a few lines above the first line you altered change the following:
--- Code: ---snprintf(version, sizeof(version), "Ver. %s", appsversion);
TO
snprintf(version, sizeof(version), "", appsversion);
--- End code ---
It gives an error about zero length string but it still compiles fine.
johnnyhaggis:
Cool! The version number on mine pops up in a cyan bar on the bottom and distrurbs the glory of my boot sreen.
Will eliminating the version number as you say get rid of the blue bar on the bottom too? Or is it just an empty space?
Job Van Dam:
ZERO cyan my man.
The only thing that will be displayed on boot is your image.
Navigation
[0] Message Index
[*] Previous page
Go to full version