@@ -94,7 +94,7 @@ private static void make(string fn)
9494 for ( int i = 0 ; i < 6 ; i ++ )
9595 {
9696 if ( pcmdata [ i ] == null ) continue ;
97- string dstFn = Path . Combine ( Path . GetDirectoryName ( fn ) , Path . GetFileNameWithoutExtension ( fn ) + addName [ i ] ) ;
97+ string dstFn = Path . Combine ( Path . GetDirectoryName ( fn ) , Path . GetFileNameWithoutExtension ( fn ) + addName [ i ] ) ;
9898 File . WriteAllBytes ( dstFn , pcmdata [ i ] ) ;
9999 Log . WriteLine ( LogLevel . INFO , string . Format ( "Write:{0} size:{1}" , dstFn , pcmdata [ i ] . Length ) ) ;
100100 }
@@ -111,12 +111,12 @@ private static void make(string fn)
111111
112112 private static List < string > [ ] divider ( string [ ] src )
113113 {
114- List < string > [ ] ret = new List < string > [ 6 ] {
114+ List < string > [ ] ret = new List < string > [ 6 ] {
115115 new List < string > ( ) , new List < string > ( ) , new List < string > ( ) ,
116- new List < string > ( ) , new List < string > ( ) , new List < string > ( )
116+ new List < string > ( ) , new List < string > ( ) , new List < string > ( )
117117 } ;
118118
119- foreach ( string lin in src )
119+ foreach ( string lin in src )
120120 {
121121 if ( string . IsNullOrEmpty ( lin ) ) continue ;
122122 if ( lin . Length < 3 ) continue ;
@@ -125,7 +125,7 @@ private static List<string>[] divider(string[] src)
125125
126126 string li = lin . Substring ( 2 ) . ToLower ( ) ;
127127 //文字列の長いものから比較
128- if ( li . IndexOf ( "pcm_3rd_b" ) == 0 ) { ret [ 2 ] . Add ( lin . Substring ( 2 + 9 ) ) ; }
128+ if ( li . IndexOf ( "pcm_3rd_b" ) == 0 ) { ret [ 2 ] . Add ( lin . Substring ( 2 + 9 ) ) ; }
129129 else if ( li . IndexOf ( "pcm_4th_b" ) == 0 ) { ret [ 3 ] . Add ( lin . Substring ( 2 + 9 ) ) ; }
130130 else if ( li . IndexOf ( "pcm_3rd_a" ) == 0 ) { ret [ 4 ] . Add ( lin . Substring ( 2 + 9 ) ) ; }
131131 else if ( li . IndexOf ( "pcm_4th_a" ) == 0 ) { ret [ 5 ] . Add ( lin . Substring ( 2 + 9 ) ) ; }
0 commit comments