summaryrefslogtreecommitdiff
path: root/src/modules.hpp
diff options
context:
space:
mode:
authorBardur Arantsson <bardur@scientician.net>2017-06-13 18:24:42 +0200
committerBardur Arantsson <bardur@scientician.net>2017-06-13 18:24:42 +0200
commitdd900258b2c67562dc58840722b0223f68769b3c (patch)
tree0e7869e6d2cfa43e720911f9a7c0f43027bbc87a /src/modules.hpp
parent29dce5dd3fadafc1f4b775ecbf7980ce5223dd1e (diff)
Rework loadsave.c:loaded_game_module to use std::string
Diffstat (limited to 'src/modules.hpp')
-rw-r--r--src/modules.hpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/modules.hpp b/src/modules.hpp
index b57120c3..867955c9 100644
--- a/src/modules.hpp
+++ b/src/modules.hpp
@@ -1,9 +1,10 @@
#pragma once
#include "h-basic.h"
+#include <string>
bool_ select_module();
-bool_ module_savefile_loadable(cptr savefile_mod);
+bool module_savefile_loadable(std::string const &savefile_mod);
void tome_intro();
void theme_intro();
s16b *theme_race_status(int r_idx);