mirror of
https://github.com/moparisthebest/minetest
synced 2024-11-05 00:45:05 -05:00
Settings: pass name to callbacks by reference
Spare some copies.
This commit is contained in:
parent
4ece2b9e32
commit
cb8978fb1d
@ -30,7 +30,7 @@ class Clouds;
|
||||
Clouds *g_menuclouds = NULL;
|
||||
irr::scene::ISceneManager *g_menucloudsmgr = NULL;
|
||||
|
||||
static void cloud_3d_setting_changed(const std::string settingname, void *data)
|
||||
static void cloud_3d_setting_changed(const std::string &settingname, void *data)
|
||||
{
|
||||
((Clouds *)data)->readSettings();
|
||||
}
|
||||
|
@ -35,7 +35,8 @@ with this program; if not, write to the Free Software Foundation, Inc.,
|
||||
FontEngine* g_fontengine = NULL;
|
||||
|
||||
/** callback to be used on change of font size setting */
|
||||
static void font_setting_changed(const std::string, void *userdata) {
|
||||
static void font_setting_changed(const std::string &name, void *userdata)
|
||||
{
|
||||
g_fontengine->readSettings();
|
||||
}
|
||||
|
||||
|
@ -806,7 +806,7 @@ public:
|
||||
m_fogEnabled = g_settings->getBool("enable_fog");
|
||||
}
|
||||
|
||||
static void SettingsCallback(const std::string name, void *userdata)
|
||||
static void SettingsCallback(const std::string &name, void *userdata)
|
||||
{
|
||||
reinterpret_cast<GameGlobalShaderConstantSetter*>(userdata)->onSettingsChange(name);
|
||||
}
|
||||
|
@ -36,7 +36,7 @@ extern Settings *g_settings;
|
||||
extern std::string g_settings_path;
|
||||
|
||||
/** function type to register a changed callback */
|
||||
typedef void (*setting_changed_callback)(const std::string, void*);
|
||||
typedef void (*setting_changed_callback)(const std::string &name, void *data);
|
||||
|
||||
enum ValueType {
|
||||
VALUETYPE_STRING,
|
||||
|
Loading…
Reference in New Issue
Block a user