fix spelling of "misk"
authorJosh Coalson <jcoalson@users.sourceforce.net>
Mon, 27 Sep 2004 04:38:52 +0000 (04:38 +0000)
committerJosh Coalson <jcoalson@users.sourceforce.net>
Mon, 27 Sep 2004 04:38:52 +0000 (04:38 +0000)
src/plugin_winamp2/config.c
src/plugin_winamp2/playback.c
src/plugin_winamp2/playback.h
src/plugin_winamp2/resource.rc

index c9b0362..b8c2194 100644 (file)
@@ -63,7 +63,7 @@ void ReadConfig()
        RI(flac_cfg.tag.reserve_space, 1);\r
 \r
        RI(flac_cfg.display.show_bps, 1);\r
-       RI(flac_cfg.output.misk.stop_err, 0);\r
+       RI(flac_cfg.output.misc.stop_err, 0);\r
        RI(flac_cfg.output.replaygain.enable, 1);\r
        RI(flac_cfg.output.replaygain.album_mode, 0);\r
        RI(flac_cfg.output.replaygain.hard_limit, 0);\r
@@ -82,7 +82,7 @@ void WriteConfig()
        WS(flac_cfg.title.sep);\r
 \r
        WI(flac_cfg.display.show_bps);\r
-       WI(flac_cfg.output.misk.stop_err);\r
+       WI(flac_cfg.output.misc.stop_err);\r
        WI(flac_cfg.output.replaygain.enable);\r
        WI(flac_cfg.output.replaygain.album_mode);\r
        WI(flac_cfg.output.replaygain.hard_limit);\r
@@ -119,7 +119,7 @@ static INT_PTR CALLBACK GeneralProc(HWND hwnd, UINT msg, WPARAM wParam, LPARAM l
                Check(IDC_ID3V1, flac_cfg.title.read_v1);\r
 /*!            Check(IDC_RESERVE, flac_cfg.tag.reserve_space); */\r
                Check(IDC_BPS, flac_cfg.display.show_bps);\r
-               Check(IDC_ERRORS, flac_cfg.output.misk.stop_err);\r
+               Check(IDC_ERRORS, flac_cfg.output.misc.stop_err);\r
                return TRUE;\r
        /* commands */\r
        case WM_COMMAND:\r
@@ -136,7 +136,7 @@ static INT_PTR CALLBACK GeneralProc(HWND hwnd, UINT msg, WPARAM wParam, LPARAM l
                        flac_cfg.title.read_v1 = GetCheck(IDC_ID3V1);\r
 /*!                    flac_cfg.tag.reserve_space = GetCheck(IDC_RESERVE); */\r
                        flac_cfg.display.show_bps = GetCheck(IDC_BPS);\r
-                       flac_cfg.output.misk.stop_err = GetCheck(IDC_ERRORS);\r
+                       flac_cfg.output.misc.stop_err = GetCheck(IDC_ERRORS);\r
                        break;\r
                /* reset */\r
                case IDC_RESET:\r
index 992f84e..ade0241 100644 (file)
@@ -89,7 +89,7 @@ static void error_callback(const FLAC__FileDecoder *decoder, FLAC__StreamDecoder
        file_info_struct *file_info = (file_info_struct*)client_data;\r
        (void)decoder;\r
 \r
-       if (cfg.misk.stop_err || status!=FLAC__STREAM_DECODER_ERROR_STATUS_LOST_SYNC)\r
+       if (cfg.misc.stop_err || status!=FLAC__STREAM_DECODER_ERROR_STATUS_LOST_SYNC)\r
                file_info->abort_flag = true;\r
 }\r
 \r
index b775876..8b133f7 100644 (file)
@@ -70,7 +70,7 @@ typedef struct {
        } resolution;\r
        struct {\r
                FLAC__bool stop_err;\r
-       } misk;\r
+       } misc;\r
 } output_config_t;\r
 \r
 /*\r
index a76457b..a2e7efe 100644 (file)
@@ -145,7 +145,7 @@ BEGIN
     GROUPBOX        " Tag Editor  ",IDC_STATIC,2,63,220,30\r
     CONTROL         "Reserve space for &VorbisComment",IDC_RESERVE,"Button",\r
                     BS_AUTOCHECKBOX | WS_DISABLED | WS_TABSTOP,8,76,125,10\r
-    GROUPBOX        " Misk  ",IDC_STATIC,2,96,220,72\r
+    GROUPBOX        " Miscellaneous  ",IDC_STATIC,2,96,220,72\r
     CONTROL         "&Show average bitrate while playing",IDC_BPS,"Button",\r
                     BS_AUTOCHECKBOX | WS_TABSTOP,8,108,125,10\r
     CONTROL         "Stop on &all errors",IDC_ERRORS,"Button",\r