summaryrefslogtreecommitdiff
path: root/includes
diff options
context:
space:
mode:
authorAsh Wolf <ninji@wuffs.org>2023-01-26 11:30:23 +0000
committerAsh Wolf <ninji@wuffs.org>2023-01-26 11:30:23 +0000
commitfc0c4c0df7b583b55a08317cf1ef6a71d27c0440 (patch)
treec6b77ab2c50c00b856de8ca9223a54304d48c093 /includes
parent3d2f1da7c8062a4932ea29a0d37a769991764cc5 (diff)
downloadMWCC-fc0c4c0df7b583b55a08317cf1ef6a71d27c0440.tar.gz
MWCC-fc0c4c0df7b583b55a08317cf1ef6a71d27c0440.zip
rename IncludeSearch enum names to match what they actually do
Diffstat (limited to 'includes')
-rw-r--r--includes/cmdline.h9
1 files changed, 4 insertions, 5 deletions
diff --git a/includes/cmdline.h b/includes/cmdline.h
index 45f052e..363766e 100644
--- a/includes/cmdline.h
+++ b/includes/cmdline.h
@@ -487,11 +487,10 @@ enum {
};
enum {
- IncludeSearch_Type0 = 0,
- IncludeSearch_Type1 = 1,
- IncludeSearch_Type2 = 2,
- IncludeSearch_Type3 = 3,
- IncludeSearch_Type4 = 4
+ IncludeSearch_Proj = 0,
+ IncludeSearch_Source = 1,
+ IncludeSearch_Explicit = 2,
+ IncludeSearch_Include = 3
};
typedef struct PrefPanel PrefPanel;