Skip to content

Commit

Permalink
Fix last played date issue
Browse files Browse the repository at this point in the history
Fix last played date issue wrongly taking release date
  • Loading branch information
andresdelcampo committed Jan 1, 2024
1 parent 2dde2f6 commit 54dc787
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion F_MoreInfos.pas
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ procedure TFrm_MoreInfos.Execute( aGame: TGame );
//on remplit les champs
Edt_Playcount.Text:= aGame.PlayCount;
if not aGame.Lastplayed.IsEmpty then
Edt_LastPlayed.Text:= FormatDateTime('dd/mm/yyyy hh:mm:ss' , ISO8601ToDate( aGame.ReleaseDate ) )
Edt_LastPlayed.Text:= FormatDateTime('dd/mm/yyyy hh:mm:ss' , ISO8601ToDate( aGame.Lastplayed ) )
else Edt_LastPlayed.Text:= '';
Edt_Crc32.Text:= aGame.Crc32;
Edt_Md5.Text:= aGame.Md5;
Expand Down

0 comments on commit 54dc787

Please sign in to comment.