From d9d9d8c5e96eadbefb2c8506a387fc282c2fe8b5 Mon Sep 17 00:00:00 2001 From: Bardur Arantsson Date: Sat, 17 Sep 2016 09:58:14 +0200 Subject: Remove unused "quest_idx" parameter from quest_type::init() --- src/q_thrain.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/q_thrain.hpp') diff --git a/src/q_thrain.hpp b/src/q_thrain.hpp index 830da016..ab69102f 100644 --- a/src/q_thrain.hpp +++ b/src/q_thrain.hpp @@ -2,4 +2,4 @@ #include "h-basic.h" -extern bool_ quest_thrain_init_hook(int q_idx); +extern bool_ quest_thrain_init_hook(); -- cgit v1.2.3 From a40e1d524849e22edf2fb65b5c2fedbe47a59b81 Mon Sep 17 00:00:00 2001 From: Bardur Arantsson Date: Tue, 2 May 2017 19:20:57 +0200 Subject: Remove redundant "extern" on function declarations --- src/q_thrain.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/q_thrain.hpp') diff --git a/src/q_thrain.hpp b/src/q_thrain.hpp index ab69102f..4e269357 100644 --- a/src/q_thrain.hpp +++ b/src/q_thrain.hpp @@ -2,4 +2,4 @@ #include "h-basic.h" -extern bool_ quest_thrain_init_hook(); +bool_ quest_thrain_init_hook(); -- cgit v1.2.3 From fdb532aec5234db77a9111d219f8a870d660c4fc Mon Sep 17 00:00:00 2001 From: Bardur Arantsson Date: Tue, 2 May 2017 19:20:57 +0200 Subject: Change away from bool_ for hooks --- src/q_thrain.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/q_thrain.hpp') diff --git a/src/q_thrain.hpp b/src/q_thrain.hpp index 4e269357..aa42385d 100644 --- a/src/q_thrain.hpp +++ b/src/q_thrain.hpp @@ -2,4 +2,4 @@ #include "h-basic.h" -bool_ quest_thrain_init_hook(); +void quest_thrain_init_hook(); -- cgit v1.2.3