summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/hints.h
diff options
context:
space:
mode:
authorreaverb <reaverb.Crawl@gmail.com>2014-05-24 01:35:42 -0400
committerreaverb <reaverb.Crawl@gmail.com>2014-05-24 02:06:53 -0400
commit2d06bffd5ab5043f7c4cfe67328844405078ee07 (patch)
treee8dde0ac9aaf3e002adb5255902957c191a30196 /crawl-ref/source/hints.h
parentf638c35fa00d49858e26e5c095e56f24705d8408 (diff)
downloadcrawl-ref-2d06bffd5ab5043f7c4cfe67328844405078ee07.tar.gz
crawl-ref-2d06bffd5ab5043f7c4cfe67328844405078ee07.zip
Chance function(void) to function()
Diffstat (limited to 'crawl-ref/source/hints.h')
-rw-r--r--crawl-ref/source/hints.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/crawl-ref/source/hints.h b/crawl-ref/source/hints.h
index 8d37dc8dab..8d156d951e 100644
--- a/crawl-ref/source/hints.h
+++ b/crawl-ref/source/hints.h
@@ -29,7 +29,7 @@ enum hints_types
void save_hints(writer& outf);
void load_hints(reader& inf);
-void init_hints_options(void);
+void init_hints_options();
enum hints_event_type
{
@@ -152,14 +152,14 @@ struct newgame_def;
void init_hints();
void tutorial_init_hints();
void pick_hints(newgame_def* choice);
-void hints_load_game(void);
+void hints_load_game();
formatted_string hints_starting_info2();
-void hints_starting_screen(void);
+void hints_starting_screen();
void hints_new_turn();
void print_hint(string key, const string arg1 = "", const string arg2 = "");
-void hints_death_screen(void);
-void hints_finished(void);
+void hints_death_screen();
+void hints_finished();
void hints_dissection_reminder(bool healthy);
void hints_healing_check();
@@ -170,10 +170,10 @@ void hints_monster_seen(const monster& mon);
void hints_first_item(const item_def& item);
void learned_something_new(hints_event_type seen_what,
coord_def gc = coord_def());
-formatted_string hints_abilities_info(void);
-string hints_skills_info(void);
+formatted_string hints_abilities_info();
+string hints_skills_info();
string hints_skill_training_info();
-string hints_skills_description_info(void);
+string hints_skills_description_info();
// Additional information for tutorial players.
void check_item_hint(const item_def &item, unsigned int num_old_talents);