diff options
author | phintuka <phintuka> | 2008-09-26 19:12:30 +0000 |
---|---|---|
committer | phintuka <phintuka> | 2008-09-26 19:12:30 +0000 |
commit | 1c595821b9ee4792a4c1c77461fa221a40cd6083 (patch) | |
tree | 492222749b5eb3004f9e90281495b9594d36f4f6 | |
parent | bb46408406a040078d1271e79538d3851357ed00 (diff) | |
download | xineliboutput-1c595821b9ee4792a4c1c77461fa221a40cd6083.tar.gz xineliboutput-1c595821b9ee4792a4c1c77461fa221a40cd6083.tar.bz2 |
1.0.2: Backported bugfixes from CVS trunk
- Store values to right place (= this-> , not xc.)
-rw-r--r-- | config.c | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -4,7 +4,7 @@ * See the main source file 'xineliboutput.c' for copyright information and * how to reach the author. * - * $Id: config.c,v 1.63 2008-04-29 12:44:25 phintuka Exp $ + * $Id: config.c,v 1.63.2.1 2008-09-26 19:12:30 phintuka Exp $ * */ @@ -789,9 +789,9 @@ bool config_t::SetupParse(const char *Name, const char *Value) else if (!strcasecmp(Name, "Playlist.Artist")) playlist_artist = atoi(Value); else if (!strcasecmp(Name, "Playlist.Album")) playlist_album = atoi(Value); - else if (!strcasecmp(Name, "Advanced.LiveModeSync")) xc.live_mode_sync = atoi(Value); - else if (!strcasecmp(Name, "Advanced.AdjustSCR")) xc.scr_tunning = atoi(Value); - else if (!strcasecmp(Name, "Advanced.SCRSpeed")) xc.scr_hz = atoi(Value); + else if (!strcasecmp(Name, "Advanced.LiveModeSync")) live_mode_sync = atoi(Value); + else if (!strcasecmp(Name, "Advanced.AdjustSCR")) scr_tunning = atoi(Value); + else if (!strcasecmp(Name, "Advanced.SCRSpeed")) scr_hz = atoi(Value); else if (!strcasecmp(Name, "Audio.Equalizer")) sscanf(Value,"%d %d %d %d %d %d %d %d %d %d", |