Skip to content

Commit

Permalink
Merge branch 'upupstream-master' into jtg/solar-sensor-no-rom
Browse files Browse the repository at this point in the history
  • Loading branch information
JesseTG committed Nov 30, 2024
2 parents d748f3d + 817b409 commit a04c927
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/NDS.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
}
}
Expand Down
1 change: 1 addition & 0 deletions src/frontend/qt_sdl/TitleManagerDialog.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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];
Expand Down

0 comments on commit a04c927

Please sign in to comment.