Merge branch 'upupstream-master' into jtg/solar-sensor-no-rom

This commit is contained in:
Jesse Talavera 2024-11-30 15:20:15 -05:00
commit a04c927768
2 changed files with 2 additions and 1 deletions

View File

@ -895,7 +895,7 @@ void NDS::RunSystemSleep(u64 timestamp)
param = evt.Param;
EventFunc func = evt.Funcs[evt.FuncID];
func(this, param);
func(evt.That, param);
}
}
}

View File

@ -119,6 +119,7 @@ void TitleManagerDialog::createTitleItem(u32 category, u32 titleid)
// TODO: make it possible to select other languages?
QString title = QString::fromUtf16(banner.EnglishTitle, 128);
title = title.left(title.indexOf('\0'));
title.replace("\n", " · ");
char gamecode[5];