We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7890c84 commit 3d0b03eCopy full SHA for 3d0b03e
1 file changed
src/search/main.cpp
@@ -85,7 +85,7 @@ void performSearch(Display* display, string keyword)
85
86
vector<RomEntry> result = db::searchEntries(name, keyword);
87
int subtotal = result.size();
88
- string label = config.label + " (" + std::to_string(subtotal) + ")";
+ string label = trim(config.label) + " (" + std::to_string(subtotal) + ")";
89
90
if (subtotal <= 0)
91
continue;
@@ -113,7 +113,7 @@ void performSearch(Display* display, string keyword)
113
flipText(display, "Searching... " + std::to_string(current_emu) + "/" + std::to_string(total_emu));
114
}
115
116
- flipText(display, "Compiling results...");
+ flipText(display, "Done");
117
118
string all_label = "All consoles (" + std::to_string(total) + ")";
119
0 commit comments