mirror of
https://github.com/VDR4Arch/vdr.git
synced 2023-10-10 13:36:52 +02:00
Fixed double semicolon
This commit is contained in:
parent
71fb3e84da
commit
1682e2708d
@ -4,7 +4,7 @@
|
|||||||
* See the main source file 'vdr.c' for copyright information and
|
* See the main source file 'vdr.c' for copyright information and
|
||||||
* how to reach the author.
|
* how to reach the author.
|
||||||
*
|
*
|
||||||
* $Id: skinlcars.c 2.21 2013/03/09 10:43:34 kls Exp $
|
* $Id: skinlcars.c 3.1 2013/04/09 11:10:25 kls Exp $
|
||||||
*/
|
*/
|
||||||
|
|
||||||
// "Star Trek: The Next Generation"(R) is a registered trademark of Paramount Pictures,
|
// "Star Trek: The Next Generation"(R) is a registered trademark of Paramount Pictures,
|
||||||
@ -854,7 +854,7 @@ cSkinLCARSDisplayMenu::cSkinLCARSDisplayMenu(void)
|
|||||||
xb12 = xb08 + w;
|
xb12 = xb08 + w;
|
||||||
xb11 = xb12 - Gap;
|
xb11 = xb12 - Gap;
|
||||||
xb13 = xb12 + lineHeight / 2;
|
xb13 = xb12 + lineHeight / 2;
|
||||||
xb14 = xb13 + Gap;;
|
xb14 = xb13 + Gap;
|
||||||
|
|
||||||
// The color buttons in the main menu:
|
// The color buttons in the main menu:
|
||||||
int r = lineHeight;
|
int r = lineHeight;
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
* See the main source file 'vdr.c' for copyright information and
|
* See the main source file 'vdr.c' for copyright information and
|
||||||
* how to reach the author.
|
* how to reach the author.
|
||||||
*
|
*
|
||||||
* $Id: sources.c 2.2 2010/02/28 15:15:39 kls Exp $
|
* $Id: sources.c 3.1 2013/04/09 11:10:30 kls Exp $
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "sources.h"
|
#include "sources.h"
|
||||||
@ -95,7 +95,7 @@ int cSource::FromData(eSourceType SourceType, int Position, bool East)
|
|||||||
if (SourceType == stSat) {
|
if (SourceType == stSat) {
|
||||||
if (East)
|
if (East)
|
||||||
Position = -Position;
|
Position = -Position;
|
||||||
code |= (Position & st_Pos);;
|
code |= (Position & st_Pos);
|
||||||
}
|
}
|
||||||
return code;
|
return code;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user