summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--HISTORY3
-rw-r--r--menu.c2
2 files changed, 4 insertions, 1 deletions
diff --git a/HISTORY b/HISTORY
index 73202d4..6b9386b 100644
--- a/HISTORY
+++ b/HISTORY
@@ -1,6 +1,9 @@
VDR Plugin 'graphlcd' Revision History
-------------------------------------
+2021-01-17
+- Fix name inconsistency between read and write of setup config value "ShowReplayLogo"
+
2020-08-19: Version 1.0.2
- Fixed VDR version detection in Makefile
diff --git a/menu.c b/menu.c
index 4b5c086..7d4f5bb 100644
--- a/menu.c
+++ b/menu.c
@@ -87,7 +87,7 @@ void cGraphLCDMenuSetup::Store()
SetupStore("ShowVolume", GraphLCDSetup.ShowVolume = newGraphLCDSetup.ShowVolume);
SetupStore("ShowNotRecording", GraphLCDSetup.ShowNotRecording = newGraphLCDSetup.ShowNotRecording);
SetupStore("IdentifyReplayType", GraphLCDSetup.IdentifyReplayType = newGraphLCDSetup.IdentifyReplayType);
- SetupStore("ReplayLogo", GraphLCDSetup.ShowReplayLogo = newGraphLCDSetup.ShowReplayLogo);
+ SetupStore("ShowReplayLogo", GraphLCDSetup.ShowReplayLogo = newGraphLCDSetup.ShowReplayLogo);
SetupStore("ModifyReplayString", GraphLCDSetup.ModifyReplayString = newGraphLCDSetup.ModifyReplayString);
SetupStore("ScrollMode", GraphLCDSetup.ScrollMode = newGraphLCDSetup.ScrollMode);
SetupStore("ScrollSpeed", GraphLCDSetup.ScrollSpeed = newGraphLCDSetup.ScrollSpeed);