blob: cac0e0df0704c5aae86face73e7724e0ebca377c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
--- remoteosd.c.orig 2007-03-19 12:58:42.000000000 +0100
+++ remoteosd.c 2007-03-19 12:59:27.000000000 +0100
@@ -108,6 +108,10 @@
{
if (!strcasecmp(Name, "HideMainMenuEntry"))
RemoteOsdSetup.hideMainMenuEntry = atoi(Value);
+ else if (!strcasecmp(Name, "ReplaceSchedule"))
+ RemoteOsdSetup.replaceSchedule = atoi(Value);
+ else if (!strcasecmp(Name, "ReplaceTimers"))
+ RemoteOsdSetup.replaceTimers = atoi(Value);
else if (!strcasecmp(Name, "ServerIp"))
strn0cpy(RemoteOsdSetup.serverIp, Value, sizeof(RemoteOsdSetup.serverIp));
else if (!strcasecmp(Name, "ServerPort"))
|