coobo wrote:Is it possible to somehow change the Bigger Yellow Font to other color?
I changed it in the source code, but the color is still yellow ...
FONT COLOR:
You are probably doing something wrong. I have made it and it works for me. You have to change this value:
Code: Select all
static const unsigned patchcode3[1] = {0xffffff00}; // local data in .text segment AARRGGBB
for example, to change to red color:
Code: Select all
static const unsigned patchcode3[1] = {0xffff0000};
Note it looks for and changes standard value (0xfff0f0f0) - almost white, so if it was changed earlier, then your application will not work. Changes are lost on power off so try to disable autostarting apps to check it out.
FONT SIZE:
Unfortunatelly, I cannot change font size. It is not working for me (values were already set to 0x20). Maybe I don't understand something in that part.
PS.
I have implemented MediaPlay font color selection function in PVR+ 4.1, where you will be able to select a few colours (default, white, yellow, red). Tell me if you want more.