mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-10 14:44:24 +00:00
Update SAV_Misc4.cs
https://projectpokemon.org/home/forums/topic/64538-pkhex-unhandled-exception-on-opening-dpp-misc-edits/
This commit is contained in:
parent
39c4463437
commit
92a8fc9096
1 changed files with 1 additions and 1 deletions
|
@ -187,7 +187,7 @@ public partial class SAV_Misc4 : Form
|
|||
for (PoketchApp i = 0; i <= PoketchApp.Alarm_Clock; i++)
|
||||
{
|
||||
var name = i.ToString();
|
||||
var title = $"{i:00} - {name}";
|
||||
var title = $"{(int)i:00} - {name}";
|
||||
CB_CurrentApp.Items.Add(name);
|
||||
var value = s.GetPoketchAppUnlocked(i);
|
||||
CLB_Poketch.Items.Add(title, value);
|
||||
|
|
Loading…
Reference in a new issue