Fix accuracy using power

This commit is contained in:
Miguel Terol Espino 2024-07-16 12:40:50 +02:00
parent fe8eff7dea
commit 327f036713
2 changed files with 2 additions and 2 deletions

View File

@ -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();

View File

@ -274,7 +274,7 @@ namespace DSPRE {
return;
}
currentLoadedFile.accuracy = (byte)powerNumericUpDown.Value;
currentLoadedFile.accuracy = (byte)accuracyNumericUpDown.Value;
setDirty(true);
}