mirror of
https://github.com/AdAstra-LD/DS-Pokemon-Rom-Editor.git
synced 2026-09-13 05:35:19 -05:00
Fixed text spacing [bgs size]
This commit is contained in:
@@ -3617,7 +3617,7 @@ namespace DSPRE {
|
||||
using (BinaryWriter writer = new BinaryWriter(File.OpenWrite(eb.FileName)))
|
||||
writer.Write(currentMapFile.GetTerrain());
|
||||
|
||||
TerrainSizeTXT.Text = currentMapFile.bdhc.Length.ToString() + "B";
|
||||
TerrainSizeTXT.Text = currentMapFile.bdhc.Length.ToString() + " B";
|
||||
MessageBox.Show("Terrain settings exported successfully!", "", MessageBoxButtons.OK, MessageBoxIcon.Information);
|
||||
}
|
||||
|
||||
@@ -3630,7 +3630,7 @@ namespace DSPRE {
|
||||
|
||||
currentMapFile.ImportSoundPlates(new FileStream(it.FileName, FileMode.Open));
|
||||
MessageBox.Show("BackGround Sound data imported successfully!", "", MessageBoxButtons.OK, MessageBoxIcon.Information);
|
||||
BGSSizeTXT.Text = currentMapFile.bgs.Length.ToString() + "B";
|
||||
BGSSizeTXT.Text = currentMapFile.bgs.Length.ToString() + " B";
|
||||
}
|
||||
|
||||
private void soundPlatesExportButton_Click(object sender, EventArgs e) {
|
||||
@@ -3643,7 +3643,7 @@ namespace DSPRE {
|
||||
using (BinaryWriter writer = new BinaryWriter(File.OpenWrite(eb.FileName)))
|
||||
writer.Write(currentMapFile.GetSoundPlates());
|
||||
|
||||
BGSSizeTXT.Text = currentMapFile.bgs.Length.ToString() + "B";
|
||||
BGSSizeTXT.Text = currentMapFile.bgs.Length.ToString() + " B";
|
||||
MessageBox.Show("BackGround Sound data exported successfully!", "", MessageBoxButtons.OK, MessageBoxIcon.Information);
|
||||
}
|
||||
#endregion
|
||||
|
||||
Reference in New Issue
Block a user