mirror of
https://github.com/AdAstra-LD/DS-Pokemon-Rom-Editor.git
synced 2026-05-15 00:09:44 -05:00
Fix accuracy using power
This commit is contained in:
parent
fe8eff7dea
commit
327f036713
|
|
@ -127,7 +127,7 @@ namespace DSPRE.Editors {
|
|||
|
||||
listBoxTriggers.DataSource = _levelScriptFile.bufferSet;
|
||||
if (listBoxTriggers.Items.Count > 0){ listBoxTriggers.SelectedIndex = 0; }
|
||||
|
||||
// Check for 318767104
|
||||
enableButtons();
|
||||
} catch (InvalidDataException ex) { //not a level script
|
||||
disableButtons();
|
||||
|
|
|
|||
|
|
@ -274,7 +274,7 @@ namespace DSPRE {
|
|||
return;
|
||||
}
|
||||
|
||||
currentLoadedFile.accuracy = (byte)powerNumericUpDown.Value;
|
||||
currentLoadedFile.accuracy = (byte)accuracyNumericUpDown.Value;
|
||||
setDirty(true);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user