summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/notes.h
diff options
context:
space:
mode:
authordshaligram <dshaligram@c06c8d41-db1a-0410-9941-cceddc491573>2007-03-07 06:02:32 +0000
committerdshaligram <dshaligram@c06c8d41-db1a-0410-9941-cceddc491573>2007-03-07 06:02:32 +0000
commita0887505eb112708e36bac24d1ee7949588fc215 (patch)
tree2318603bd85043311c7b55c9bdd276e8ebfcebbc /crawl-ref/source/notes.h
parent4e0238331ba68154c95e3aa2536b8e2b6c38dde3 (diff)
downloadcrawl-ref-a0887505eb112708e36bac24d1ee7949588fc215.tar.gz
crawl-ref-a0887505eb112708e36bac24d1ee7949588fc215.zip
Kill hard tabs in .h files and crawl_options.txt.
Turn off mp_warning by default. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@990 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/notes.h')
-rw-r--r--crawl-ref/source/notes.h42
1 files changed, 21 insertions, 21 deletions
diff --git a/crawl-ref/source/notes.h b/crawl-ref/source/notes.h
index 0948334b06..97518a277c 100644
--- a/crawl-ref/source/notes.h
+++ b/crawl-ref/source/notes.h
@@ -17,27 +17,27 @@
enum NOTE_TYPES
{
- NOTE_HP_CHANGE = 0, /* needs: new hp, max hp */
- NOTE_MAXHP_CHANGE, /* needs: new maxhp */
- NOTE_MP_CHANGE, /* needs: new mp, max mp */
- NOTE_MAXMP_CHANGE, /* needs: new maxmp */
- NOTE_XP_LEVEL_CHANGE, /* needs: new xplevel */
- NOTE_DUNGEON_LEVEL_CHANGE, /* needs: branch, subdepth */
- NOTE_LEARN_SPELL, /* needs: spell idx */
- NOTE_GET_GOD, /* needs: god id */
- NOTE_GOD_GIFT, /* needs: god id */
- NOTE_GOD_POWER, /* needs: god id, idx */
- NOTE_GET_MUTATION, /* needs: mutation idx */
- NOTE_LOSE_MUTATION, /* needs: mutation idx */
- NOTE_ID_ITEM, /* needs: item name (string) */
- NOTE_GET_ITEM, /* needs: item name (string) NOT HOOKED */
- NOTE_GAIN_SKILL, /* needs: skill id, level */
- NOTE_SEEN_MONSTER, /* needs: monster name (string) */
- NOTE_KILL_MONSTER, /* needs: monster name (string) */
- NOTE_POLY_MONSTER, /* needs: monster name (string) */
- NOTE_USER_NOTE, /* needs: description string */
+ NOTE_HP_CHANGE = 0, /* needs: new hp, max hp */
+ NOTE_MAXHP_CHANGE, /* needs: new maxhp */
+ NOTE_MP_CHANGE, /* needs: new mp, max mp */
+ NOTE_MAXMP_CHANGE, /* needs: new maxmp */
+ NOTE_XP_LEVEL_CHANGE, /* needs: new xplevel */
+ NOTE_DUNGEON_LEVEL_CHANGE, /* needs: branch, subdepth */
+ NOTE_LEARN_SPELL, /* needs: spell idx */
+ NOTE_GET_GOD, /* needs: god id */
+ NOTE_GOD_GIFT, /* needs: god id */
+ NOTE_GOD_POWER, /* needs: god id, idx */
+ NOTE_GET_MUTATION, /* needs: mutation idx */
+ NOTE_LOSE_MUTATION, /* needs: mutation idx */
+ NOTE_ID_ITEM, /* needs: item name (string) */
+ NOTE_GET_ITEM, /* needs: item name (string) NOT HOOKED */
+ NOTE_GAIN_SKILL, /* needs: skill id, level */
+ NOTE_SEEN_MONSTER, /* needs: monster name (string) */
+ NOTE_KILL_MONSTER, /* needs: monster name (string) */
+ NOTE_POLY_MONSTER, /* needs: monster name (string) */
+ NOTE_USER_NOTE, /* needs: description string */
NOTE_MESSAGE, /* needs: message string */
- NOTE_LOSE_GOD, /* needs: god id */
+ NOTE_LOSE_GOD, /* needs: god id */
NOTE_MOLLIFY_GOD, /* needs: god id */
NOTE_NUM_TYPES
};
@@ -46,7 +46,7 @@ struct Note
{
Note();
Note( NOTE_TYPES t, int f = 0, int s = 0, const char* n = 0,
- const char* d = 0);
+ const char* d = 0);
NOTE_TYPES type;
int first, second;
long turn;