Skip to content

Commit

Permalink
编码问题 fixed #25
Browse files Browse the repository at this point in the history
  • Loading branch information
Perfare committed Oct 13, 2017
1 parent ff8e8d4 commit faaa399
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Il2CppDumper/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -105,10 +105,10 @@ static void Main(string[] args)
{
return;
}
var writer = new StreamWriter(new FileStream("dump.cs", FileMode.Create));
var writer = new StreamWriter(new FileStream("dump.cs", FileMode.Create), Encoding.UTF8);
Console.WriteLine("Dumping...");
//Script
var scriptwriter = new StreamWriter(new FileStream("script.py", FileMode.Create));
var scriptwriter = new StreamWriter(new FileStream("script.py", FileMode.Create), Encoding.UTF8);
scriptwriter.WriteLine(Resource1.ida);
//
//dump image;
Expand Down

0 comments on commit faaa399

Please sign in to comment.