mirror of
				https://git.h3cjp.net/H3cJP/citra.git
				synced 2025-10-31 06:55:03 +00:00 
			
		
		
		
	Make copying directory string more concise
This commit is contained in:
		
							parent
							
								
									326403518d
								
							
						
					
					
						commit
						f57cbd9f24
					
				|  | @ -56,8 +56,7 @@ std::shared_ptr<VfsDirectory> FindSubdirectoryCaseless(const std::shared_ptr<Vfs | |||
| #else | ||||
|     const auto subdirs = dir->GetSubdirectories(); | ||||
|     for (const auto& subdir : subdirs) { | ||||
|         std::string dir_name = subdir->GetName(); | ||||
|         dir_name = Common::ToLower(dir_name); | ||||
|         std::string dir_name = Common::ToLower(subdir->GetName()); | ||||
|         if (dir_name == name) { | ||||
|             return subdir; | ||||
|         } | ||||
|  |  | |||
		Loading…
	
		Reference in a new issue