mirror of
https://github.com/Detanup01/gbe_fork.git
synced 2024-11-30 14:25:36 +08:00
settings_parser: use multibyte std::string
This commit is contained in:
parent
8208d1541d
commit
92a38b2f2f
@ -1146,12 +1146,12 @@ static void parse_crash_printer_location()
|
|||||||
{
|
{
|
||||||
std::string line(common_helpers::string_strip(ini.GetValue("main::general", "crash_printer_location", "")));
|
std::string line(common_helpers::string_strip(ini.GetValue("main::general", "crash_printer_location", "")));
|
||||||
if (line.size()) {
|
if (line.size()) {
|
||||||
auto crash_path = utf8_decode(common_helpers::to_absolute(line, get_full_program_path()));
|
auto crash_path = common_helpers::to_absolute(line, get_full_program_path());
|
||||||
if (crash_path.size()) {
|
if (crash_path.size()) {
|
||||||
if (crash_printer::init(crash_path)) {
|
if (crash_printer::init(crash_path)) {
|
||||||
PRINT_DEBUG("Unhandled crashes will be saved to '%s'", utf8_encode(crash_path).c_str());
|
PRINT_DEBUG("Unhandled crashes will be saved to '%s'", crash_path.c_str());
|
||||||
} else {
|
} else {
|
||||||
PRINT_DEBUG("Failed to setup unhandled crash printer with path: '%s'", utf8_encode(crash_path).c_str());
|
PRINT_DEBUG("Failed to setup unhandled crash printer with path: '%s'", crash_path.c_str());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user