ref: fix formatting issues

This commit is contained in:
Justin Luque
2026-01-05 20:35:43 -05:00
parent 1456cefc1c
commit a5e8826bdb

View File

@@ -201,7 +201,6 @@ void FileSelectionActivity::render() const {
int FileSelectionActivity::findEntry(const std::string& name) const {
for (size_t i = 0; i < files.size(); i++)
if (files[i] == name)
return i;
if (files[i] == name) return i;
return 0;
}