diff options
Diffstat (limited to 'commands/command.cpp')
-rw-r--r-- | commands/command.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/commands/command.cpp b/commands/command.cpp index 9ea0e860f..29702c703 100644 --- a/commands/command.cpp +++ b/commands/command.cpp @@ -218,6 +218,11 @@ int editAtmPress(int newValue, bool currentDiveOnly) return execute_edit(new EditAtmPress(newValue, currentDiveOnly)); } +int editWaterTypeUser(int newValue, bool currentDiveOnly) +{ + return execute_edit(new EditWaterTypeUser(newValue, currentDiveOnly)); +} + int editDepth(int newValue, bool currentDiveOnly) { return execute_edit(new EditDepth(newValue, currentDiveOnly)); |