Fix macro recording regression on Unicode character

Fix #13757
pull/13762/head
Don Ho 2023-06-10 17:47:34 +02:00
parent 96ff66b225
commit b5e2e9d737
1 changed files with 1 additions and 1 deletions

View File

@ -714,7 +714,7 @@ recordedMacroStep::recordedMacroStep(int iMessage, uptr_t wParam, uptr_t lParam)
case IDD_FINDINFILES_FILTERS_COMBO: case IDD_FINDINFILES_FILTERS_COMBO:
{ {
char *ch = reinterpret_cast<char *>(_lParameter); char *ch = reinterpret_cast<char *>(_lParameter);
_sParameter = *ch; _sParameter = ch;
_macroType = mtUseSParameter; _macroType = mtUseSParameter;
_lParameter = 0; _lParameter = 0;
} }