CComponents: remove wrong init value for item position

This causes an unnecessary offset and possible fb-remains.
This was observed at the header in Imageinfo, but only without shadow.


Origin commit data
------------------
Branch: ni/coolstream
Commit: 57a6c36329
Author: Thilo Graf <dbt@novatux.de>
Date: 2014-01-31 (Fri, 31 Jan 2014)



------------------
This commit was generated by Migit
This commit is contained in:
2014-01-31 23:11:13 +01:00
parent db5ef9c79f
commit 6eba3a1467

View File

@@ -56,8 +56,8 @@ void CComponents::clearSavedScreen()
void CComponents::initVarBasic()
{
x = saved_screen.x = 1;
y = saved_screen.y = 1;
x = saved_screen.x = 0;
y = saved_screen.y = 0;
cc_xr = x;
cc_yr = y;
height = saved_screen.dy = CC_HEIGHT_MIN;