ref: fix formatting issues

This commit is contained in:
Justin Luque 2026-01-05 20:35:43 -05:00
parent 1456cefc1c
commit a5e8826bdb
No known key found for this signature in database
GPG Key ID: 5D19058FC4BE922F

View File

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