Fix for Qt ram watch window save file symbol type parameter sometimes being undefined.

This commit is contained in:
harry 2023-01-30 22:13:28 -05:00
parent 6a2e384469
commit d4c2a7e2d9
1 changed files with 6 additions and 6 deletions

View File

@ -911,7 +911,7 @@ void RamWatchDialog_t::openWatchEditWindow( ramWatch_t *rw, int mode)
if ( (rw == NULL) || mode )
{
ramWatchList.add_entry( notesEntry->text().toStdString().c_str(),
addr, unsignedTypeBtn->isChecked(), size, isSep);
addr, unsignedTypeBtn->isChecked() ? 'u' : 's', size, isSep);
}
else
{