summaryrefslogtreecommitdiff
path: root/src/util.hpp
diff options
context:
space:
mode:
authorBardur Arantsson <bardur@scientician.net>2016-02-05 19:22:46 +0100
committerBardur Arantsson <bardur@scientician.net>2016-02-05 19:22:46 +0100
commit5cecddb28bf224e06fc062ed430dd8322b2d3cff (patch)
tree346e26505e6db366d4d99a7dc3575b494244390a /src/util.hpp
parent0626333610e343551f88778320a04836f2d2b406 (diff)
Make get_day() return std::string
Diffstat (limited to 'src/util.hpp')
-rw-r--r--src/util.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/util.hpp b/src/util.hpp
index bb8a64f4..6e7d74fa 100644
--- a/src/util.hpp
+++ b/src/util.hpp
@@ -10,7 +10,7 @@ extern bool_ input_box(cptr text, int y, int x, char *buf, int max);
extern void draw_box(int y, int x, int h, int w);
extern void display_list(int y, int x, int h, int w, cptr title, cptr *list, int max, int begin, int sel, byte sel_color);
extern cptr get_player_race_name(int pr, int ps);
-extern cptr get_day(int day);
+extern std::string get_day(s32b day);
extern s32b bst(s32b what, s32b t);
extern errr path_temp(char *buf, int max);
extern FILE *my_fopen(cptr file, cptr mode);