diff options
author | Peter Bieringer <pb@bieringer.de> | 2021-01-17 07:46:36 +0100 |
---|---|---|
committer | Peter Bieringer <pb@bieringer.de> | 2021-01-17 07:46:36 +0100 |
commit | 621ffedb4ffa3a1d5457984295fa3855cb68ed2a (patch) | |
tree | 805e52b06e4624a3eacac2cf3c30fcf573338ee1 /menu.c | |
parent | dc0086e1248d7e07b8487f186a88cd76ff062740 (diff) | |
download | vdr-plugin-graphlcd-621ffedb4ffa3a1d5457984295fa3855cb68ed2a.tar.gz vdr-plugin-graphlcd-621ffedb4ffa3a1d5457984295fa3855cb68ed2a.tar.bz2 |
Fix name inconsistency between read and write of setup config value "ShowReplayLogo"
Diffstat (limited to 'menu.c')
-rw-r--r-- | menu.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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); |