mirror of
https://github.com/StudentBlake/XCI-Explorer
synced 2024-11-10 06:34:15 +00:00
Disable losing focus of treeview
This commit is contained in:
parent
2ed6cf7769
commit
3489c6a598
3 changed files with 10 additions and 4 deletions
|
@ -72,5 +72,10 @@
|
|||
<Compile Include="XTSSharp\XtsSectorStream.cs" />
|
||||
<Compile Include="XTSSharp\XtsStream.cs" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<EmbeddedResource Include="XCI_Explorer\MainForm.resx">
|
||||
<DependentUpon>MainForm.cs</DependentUpon>
|
||||
</EmbeddedResource>
|
||||
</ItemGroup>
|
||||
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
||||
</Project>
|
|
@ -273,10 +273,10 @@ namespace XCI_Explorer
|
|||
if (File.Exists("data\\control.nacp"))
|
||||
{
|
||||
byte[] source = File.ReadAllBytes("data\\control.nacp");
|
||||
NACP.NACP_Datas[0] = new NACP.NACP_Data(source.Skip(12288).Take(4096).ToArray());
|
||||
NACP.NACP_Datas[0] = new NACP.NACP_Data(source.Skip(0x3000).Take(0x1000).ToArray());
|
||||
for (int i = 0; i < NACP.NACP_Strings.Length; i++)
|
||||
{
|
||||
NACP.NACP_Strings[i] = new NACP.NACP_String(source.Skip(i * 768).Take(768).ToArray());
|
||||
NACP.NACP_Strings[i] = new NACP.NACP_String(source.Skip(i * 0x300).Take(0x300).ToArray());
|
||||
if (NACP.NACP_Strings[i].Check != 0)
|
||||
{
|
||||
CB_RegionName.Items.Add(Language[i]);
|
||||
|
@ -1276,6 +1276,7 @@ namespace XCI_Explorer
|
|||
// TV_Partitions
|
||||
//
|
||||
this.TV_Partitions.Dock = System.Windows.Forms.DockStyle.Top;
|
||||
this.TV_Partitions.HideSelection = false;
|
||||
this.TV_Partitions.Location = new System.Drawing.Point(3, 3);
|
||||
this.TV_Partitions.Name = "TV_Partitions";
|
||||
this.TV_Partitions.Size = new System.Drawing.Size(341, 361);
|
||||
|
|
|
@ -35,8 +35,8 @@ namespace XCI_Explorer
|
|||
public NACP_Data(byte[] data)
|
||||
{
|
||||
Data = data;
|
||||
GameVer = Encoding.UTF8.GetString(Data.Skip(96).Take(16).ToArray());
|
||||
GameProd = Encoding.UTF8.GetString(Data.Skip(168).Take(8).ToArray());
|
||||
GameVer = Encoding.UTF8.GetString(Data.Skip(0x60).Take(16).ToArray());
|
||||
GameProd = Encoding.UTF8.GetString(Data.Skip(0xA8).Take(8).ToArray());
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue