mirror of
				https://github.com/aelurum/AssetStudio.git
				synced 2025-11-03 14:35:14 -05:00 
			
		
		
		
	Fixed #929
This commit is contained in:
		@ -1,4 +1,5 @@
 | 
				
			|||||||
using System.Collections.Generic;
 | 
					using System;
 | 
				
			||||||
 | 
					using System.Collections.Generic;
 | 
				
			||||||
using System.Collections.Specialized;
 | 
					using System.Collections.Specialized;
 | 
				
			||||||
using System.IO;
 | 
					using System.IO;
 | 
				
			||||||
using System.Text;
 | 
					using System.Text;
 | 
				
			||||||
@ -190,9 +191,11 @@ namespace AssetStudio
 | 
				
			|||||||
                    value = reader.ReadSByte();
 | 
					                    value = reader.ReadSByte();
 | 
				
			||||||
                    break;
 | 
					                    break;
 | 
				
			||||||
                case "UInt8":
 | 
					                case "UInt8":
 | 
				
			||||||
                case "char":
 | 
					 | 
				
			||||||
                    value = reader.ReadByte();
 | 
					                    value = reader.ReadByte();
 | 
				
			||||||
                    break;
 | 
					                    break;
 | 
				
			||||||
 | 
					                case "char":
 | 
				
			||||||
 | 
					                    value = BitConverter.ToChar(reader.ReadBytes(2), 0);
 | 
				
			||||||
 | 
					                    break;
 | 
				
			||||||
                case "short":
 | 
					                case "short":
 | 
				
			||||||
                case "SInt16":
 | 
					                case "SInt16":
 | 
				
			||||||
                    value = reader.ReadInt16();
 | 
					                    value = reader.ReadInt16();
 | 
				
			||||||
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user