diff --git a/panda/src/express/get_config_path.cxx b/panda/src/express/get_config_path.cxx index 0934b790d8..097a875de6 100644 --- a/panda/src/express/get_config_path.cxx +++ b/panda/src/express/get_config_path.cxx @@ -52,10 +52,10 @@ get_config_path(const string &config_var_name, DSearchPath *&static_ptr) { if (!all_defs.empty()) { Config::ConfigTable::Symbol::reverse_iterator si = all_defs.rbegin(); - (*static_ptr).append_path(ExecutionEnvironment::expand_string((*si).Val())); + (*static_ptr).append_path(ExecutionEnvironment::expand_string((*si).Val()), ""); ++si; while (si != all_defs.rend()) { - (*static_ptr).append_path(ExecutionEnvironment::expand_string((*si).Val())); + (*static_ptr).append_path(ExecutionEnvironment::expand_string((*si).Val()), ""); ++si; } }