Fixed the "decending" typo. (#91)

Co-authored-by: ITotalJustice <47043333+ITotalJustice@users.noreply.github.com>
This commit is contained in:
HenryBaby
2025-01-16 06:17:59 +01:00
committed by GitHub
parent 650e7812e5
commit f66494aeb5
19 changed files with 31 additions and 31 deletions

View File

@@ -130,7 +130,7 @@ enum SortType {
};
enum OrderType {
OrderType_Decending,
OrderType_Descending,
OrderType_Ascending,
};
@@ -199,7 +199,7 @@ private:
Filter m_filter{Filter::Filter_All};
SortType m_sort{SortType::SortType_Updated};
OrderType m_order{OrderType::OrderType_Decending};
OrderType m_order{OrderType::OrderType_Descending};
s64 m_index{}; // where i am in the array
LazyImage m_default_image;

View File

@@ -29,7 +29,7 @@ enum SortType {
};
enum OrderType {
OrderType_Decending,
OrderType_Descending,
OrderType_Ascending,
};
@@ -262,7 +262,7 @@ private:
SelectedType m_selected_type{SelectedType::None};
option::OptionLong m_sort{INI_SECTION, "sort", SortType::SortType_Alphabetical};
option::OptionLong m_order{INI_SECTION, "order", OrderType::OrderType_Decending};
option::OptionLong m_order{INI_SECTION, "order", OrderType::OrderType_Descending};
option::OptionBool m_show_hidden{INI_SECTION, "show_hidden", false};
option::OptionBool m_folders_first{INI_SECTION, "folders_first", true};
option::OptionBool m_hidden_last{INI_SECTION, "hidden_last", false};

View File

@@ -18,7 +18,7 @@ enum SortType {
};
enum OrderType {
OrderType_Decending,
OrderType_Descending,
OrderType_Ascending,
};
@@ -55,7 +55,7 @@ private:
std::unique_ptr<List> m_list;
option::OptionLong m_sort{INI_SECTION, "sort", SortType::SortType_AlphabeticalStar};
option::OptionLong m_order{INI_SECTION, "order", OrderType::OrderType_Decending};
option::OptionLong m_order{INI_SECTION, "order", OrderType::OrderType_Descending};
option::OptionBool m_hide_sphaira{INI_SECTION, "hide_sphaira", false};
};