summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/enum.h
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/enum.h')
-rw-r--r--crawl-ref/source/enum.h11
1 files changed, 6 insertions, 5 deletions
diff --git a/crawl-ref/source/enum.h b/crawl-ref/source/enum.h
index 9d8bbf4671..2e95d31c18 100644
--- a/crawl-ref/source/enum.h
+++ b/crawl-ref/source/enum.h
@@ -537,6 +537,12 @@ enum command_type
CMD_ANNOTATE_LEVEL,
+#ifdef USE_TILE
+ CMD_EDIT_PLAYER_TILE,
+ CMD_MIN_TILE = CMD_EDIT_PLAYER_TILE,
+ CMD_MAX_TILE = CMD_MIN_TILE,
+#endif
+
// Repeat previous command
CMD_PREV_CMD_AGAIN,
@@ -659,11 +665,6 @@ enum command_type
CMD_TARGET_HELP,
CMD_MAX_TARGET = CMD_TARGET_HELP,
-#ifdef USE_TILE
- CMD_MIN_TILE,
- CMD_MAX_TILE = CMD_MIN_TILE - 1,
-#endif
-
// Disable/enable -more- prompts.
CMD_DISABLE_MORE,
CMD_MIN_SYNTHETIC = CMD_DISABLE_MORE,