CComponents: use correct initial values screen start position

Value '0' is wrong.
This commit is contained in:
2013-11-02 19:43:30 +01:00
parent ffe50db001
commit 72705b19de

View File

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