File tree 1 file changed +3
-5
lines changed 1 file changed +3
-5
lines changed Original file line number Diff line number Diff line change @@ -318,12 +318,12 @@ public void UpdateContents(string contentDir)
318
318
string path = str1 + str2 + str3 + ".app" ;
319
319
conts [ index ] = File . ReadAllBytes ( path ) ;
320
320
}
321
- UpdateContents ( conts ) ;
321
+ UpdateContentsBytes ( conts ) ;
322
322
}
323
323
324
324
public void UpdateContents ( byte [ ] [ ] contents )
325
325
{
326
- UpdateContents ( contents ) ;
326
+ UpdateContentsBytes ( contents ) ;
327
327
}
328
328
329
329
public string GetUpperTitleID ( )
@@ -491,8 +491,7 @@ private void WriteToStream(Stream writeStream)
491
491
FireDebug ( "Writing TMD Finished..." ) ;
492
492
}
493
493
494
- /*
495
- private void PrivUpdateContents(byte[][] conts)
494
+ private void UpdateContentsBytes ( byte [ ] [ ] conts )
496
495
{
497
496
SHA1 shA1 = SHA1 . Create ( ) ;
498
497
for ( int index = 0 ; index < this . contents . Count ; ++ index )
@@ -502,7 +501,6 @@ private void PrivUpdateContents(byte[][] conts)
502
501
}
503
502
shA1 . Clear ( ) ;
504
503
}
505
- */
506
504
507
505
private void ParseTmd ( Stream tmdFile )
508
506
{
You can’t perform that action at this time.
0 commit comments