diff options
Diffstat (limited to 'src/clients/cave/cmd_display_resolution.cc')
-rwxr-xr-x | src/clients/cave/cmd_display_resolution.cc | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/clients/cave/cmd_display_resolution.cc b/src/clients/cave/cmd_display_resolution.cc index 5a29bec3d..6d7c0917d 100755 --- a/src/clients/cave/cmd_display_resolution.cc +++ b/src/clients/cave/cmd_display_resolution.cc @@ -1192,6 +1192,9 @@ namespace case ct_slot_new: cout << fuc(fs_change_type_slot_new(), fv<'c'>(c), fv<'s'>(x.replace(x.find('X'), 1, "s"))); continue; + case ct_add_to_slot: + cout << fuc(fs_change_type_add_to_slot(), fv<'c'>(c), fv<'s'>(x.replace(x.find('X'), 1, "v"))); + continue; case ct_upgrade: cout << fuc(fs_change_type_upgrade(), fv<'c'>(c), fv<'s'>(x.replace(x.find('X'), 1, "u"))); continue; @@ -1679,6 +1682,10 @@ namespace kind = "new slot installs"; break; + case ct_add_to_slot: + kind = "adding to slot"; + break; + case ct_upgrade: kind = "upgrades"; break; |