Skip to content

Commit

Permalink
Merge pull request #102 from chinosk6/main
Browse files Browse the repository at this point in the history
fix typo
  • Loading branch information
chinosk6 authored Jan 13, 2023
2 parents 01d40e3 + c061da2 commit bc9400e
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
Binary file modified resources/legend_g_plugin.exe
Binary file not shown.
2 changes: 1 addition & 1 deletion src/local/local.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -339,7 +339,7 @@ namespace local
wstring current_str_jp = text_full_jp.substr(0, n);
int local_text_offset = text_len_local * ((double)n / (double)text_len_jp);
wstring current_str_local = text_full_local.substr(0, local_text_offset);
if (current_str_jp == L"" || current_str_local == L"") continue;
if (current_str_jp == L"" || current_str_local == L"" || current_str_jp == L"……") continue;
hometimelineTextHashData.emplace(std::hash<wstring>{}(current_str_jp), current_str_local);
}
hometimelineTextHashData.emplace(std::hash<wstring>{}(text_full_jp), text_full_local);
Expand Down

0 comments on commit bc9400e

Please sign in to comment.