Skip to content

Commit

Permalink
Merge branch 'master' into lp2-updates
Browse files Browse the repository at this point in the history
  • Loading branch information
jakedowns committed Jan 25, 2024
2 parents ce4b303 + 1744537 commit 6e03206
Show file tree
Hide file tree
Showing 17 changed files with 1,294 additions and 6,334 deletions.
6,235 changes: 0 additions & 6,235 deletions dist/languages/fi_FI.ts

This file was deleted.

3 changes: 2 additions & 1 deletion src/citra_qt/configuration/configure_ui.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,8 @@ void ConfigureUi::InitializeLanguageComboBox() {
locale.truncate(locale.lastIndexOf(QLatin1Char{'.'}));
locale.remove(0, locale.lastIndexOf(QLatin1Char{'/'}) + 1);
const QString lang = QLocale::languageToString(QLocale(locale).language());
ui->language_combobox->addItem(lang, locale);
const QString country = QLocale::territoryToString(QLocale(locale).territory());
ui->language_combobox->addItem(QStringLiteral("%1 (%2)").arg(lang, country), locale);
}

// Unlike other configuration changes, interface language changes need to be reflected on the
Expand Down
1 change: 1 addition & 0 deletions src/common/logging/filter.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,7 @@ bool ParseFilterRule(Filter& instance, Iterator begin, Iterator end) {
SUB(Service, Y2R) \
SUB(Service, PS) \
SUB(Service, PLGLDR) \
SUB(Service, NEWS) \
CLS(HW) \
SUB(HW, Memory) \
SUB(HW, LCD) \
Expand Down
1 change: 1 addition & 0 deletions src/common/logging/types.h
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,7 @@ enum class Class : u8 {
Service_Y2R, ///< The Y2R (YUV to RGB conversion) service
Service_PS, ///< The PS (Process) service
Service_PLGLDR, ///< The PLGLDR (plugin loader) service
Service_NEWS, ///< The NEWS (Notifications) service
HW, ///< Low-level hardware emulation
HW_Memory, ///< Memory-map and address translation
HW_LCD, ///< LCD register emulation
Expand Down
Loading

0 comments on commit 6e03206

Please sign in to comment.