summaryrefslogtreecommitdiff
path: root/src/plugin_winamp2/config.c
diff options
context:
space:
mode:
authorJosh Coalson <jcoalson@users.sourceforce.net>2004-09-28 00:23:57 +0000
committerJosh Coalson <jcoalson@users.sourceforce.net>2004-09-28 00:23:57 +0000
commite31d9eb05cb82bd5f9cab1e6ad5295ddad22bcab (patch)
treea374e116afd5369e80584b63a151f38b0f84bc6a /src/plugin_winamp2/config.c
parent47297ce8e7f162761abfc6ca9f616fd363204a05 (diff)
downloadflac-e31d9eb05cb82bd5f9cab1e6ad5295ddad22bcab.tar.gz
remove id3 support from the plugins
Diffstat (limited to 'src/plugin_winamp2/config.c')
-rw-r--r--src/plugin_winamp2/config.c7
1 files changed, 2 insertions, 5 deletions
diff --git a/src/plugin_winamp2/config.c b/src/plugin_winamp2/config.c
index b8c21947..86462e15 100644
--- a/src/plugin_winamp2/config.c
+++ b/src/plugin_winamp2/config.c
@@ -59,7 +59,6 @@ void ReadConfig()
flac_cfg.title.tag_format_w = FLAC_plugin__convert_ansi_to_wide(flac_cfg.title.tag_format);
/* @@@ FIXME: trailing spaces */
RS(flac_cfg.title.sep, sizeof(flac_cfg.title.sep), default_sep);
- RI(flac_cfg.title.read_v1, 1);
RI(flac_cfg.tag.reserve_space, 1);
RI(flac_cfg.display.show_bps, 1);
@@ -77,7 +76,6 @@ void ReadConfig()
void WriteConfig()
{
WS(flac_cfg.title.tag_format);
- WI(flac_cfg.title.read_v1);
WI(flac_cfg.tag.reserve_space);
WS(flac_cfg.title.sep);
@@ -116,7 +114,7 @@ static INT_PTR CALLBACK GeneralProc(HWND hwnd, UINT msg, WPARAM wParam, LPARAM l
SetDlgItemText(hwnd, IDC_TITLE, flac_cfg.title.tag_format);
SetDlgItemText(hwnd, IDC_SEP, flac_cfg.title.sep);
- Check(IDC_ID3V1, flac_cfg.title.read_v1);
+ Check(IDC_ID3V1, 0);
/*! Check(IDC_RESERVE, flac_cfg.tag.reserve_space); */
Check(IDC_BPS, flac_cfg.display.show_bps);
Check(IDC_ERRORS, flac_cfg.output.misc.stop_err);
@@ -133,14 +131,13 @@ static INT_PTR CALLBACK GeneralProc(HWND hwnd, UINT msg, WPARAM wParam, LPARAM l
GetDlgItemText(hwnd, IDC_SEP, flac_cfg.title.sep, sizeof(flac_cfg.title.sep));
flac_cfg.title.tag_format_w = FLAC_plugin__convert_ansi_to_wide(flac_cfg.title.tag_format);
- flac_cfg.title.read_v1 = GetCheck(IDC_ID3V1);
/*! flac_cfg.tag.reserve_space = GetCheck(IDC_RESERVE); */
flac_cfg.display.show_bps = GetCheck(IDC_BPS);
flac_cfg.output.misc.stop_err = GetCheck(IDC_ERRORS);
break;
/* reset */
case IDC_RESET:
- Check(IDC_ID3V1, 1);
+ Check(IDC_ID3V1, 0);
Check(IDC_RESERVE, 1);
Check(IDC_BPS, 1);
Check(IDC_ERRORS, 0);