mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
Simplified names in BSA2Reader nad ModListMetadata
This commit is contained in:
parent
1b26063773
commit
8342f00a53
@ -294,7 +294,7 @@ namespace Compression.BSA
|
||||
ddsHeader.dwPitchOrLinearSize = (uint)(_width * _height); // 8bpp
|
||||
break;
|
||||
default:
|
||||
throw new Exception("Unsupported DDS header format. File: " + this.FullPath);
|
||||
throw new Exception("Unsupported DDS header format. File: " + FullPath);
|
||||
}
|
||||
|
||||
bw.Write((uint)DDS.DDS_MAGIC);
|
||||
|
@ -22,7 +22,7 @@ namespace Wabbajack.Lib.ModListRegistry
|
||||
[JsonProperty("game")]
|
||||
public Game Game { get; set; }
|
||||
|
||||
[JsonIgnore] public string GameName => this.Game.ToDescriptionString();
|
||||
[JsonIgnore] public string GameName => Game.ToDescriptionString();
|
||||
|
||||
[JsonProperty("official")]
|
||||
public bool Official { get; set; }
|
||||
|
Loading…
Reference in New Issue
Block a user