Skip to content

Commit

Permalink
added images to all skills and talents; adjusted position of images
Browse files Browse the repository at this point in the history
  • Loading branch information
tolik518 committed Aug 3, 2024
1 parent 9838ed7 commit def83f4
Show file tree
Hide file tree
Showing 58 changed files with 3,124 additions and 2,433 deletions.
2 changes: 1 addition & 1 deletion SoG_SGreader/DataReader.cs
Original file line number Diff line number Diff line change
Expand Up @@ -431,7 +431,7 @@ public static Player ReadFromFile(string fileName, ITextBoxWrapper txtConsole)
return playerObject;
}

public static PlayerPreview GetCharName(string fileName)
public static PlayerPreview GetPlayerPreview(string fileName)
{
string nickname = "";
bool sex = false;
Expand Down
2 changes: 1 addition & 1 deletion SoG_SGreader/Forms/FrmLoadSaveGame.cs
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ private void GetSaveGameFiles(string sFilePath)
string savegame = Path.Combine(sFilePath, i + ".cha");
if (File.Exists(savegame))
{
PlayerPreview player = DataReader.GetCharName(savegame);
PlayerPreview player = DataReader.GetPlayerPreview(savegame);
string[] item = new string[] { i.ToString(), player.GetSex(), player.Nickname };
lstvSaveGames.Items.Add(new ListViewItem(item, 0));
}
Expand Down
4,551 changes: 2,267 additions & 2,284 deletions SoG_SGreader/Forms/FrmMain.Designer.cs

Large diffs are not rendered by default.

6 changes: 0 additions & 6 deletions SoG_SGreader/Forms/FrmMain.cs
Original file line number Diff line number Diff line change
Expand Up @@ -914,12 +914,6 @@ private void TabControl1_DrawItem(object sender, DrawItemEventArgs e) //Skills
);
}

private void PictureBox3_Click(object sender, EventArgs e) //:3 Icon in the top corner
{
FrmAbout frmAbout = new FrmAbout();
frmAbout.ShowDialog();
}

private async void FrmMain_Load(object sender, EventArgs e)
{
Text = "SoG: Savegame Editor v" + Application.ProductVersion + " by tolik518";
Expand Down
Loading

0 comments on commit def83f4

Please sign in to comment.