mirror of
				https://git.zaroz.cloud/nintendo-back-up/yuzu/yuzu-mainline.git
				synced 2025-03-21 01:53:15 +00:00 
			
		
		
		
	Merge pull request #1170 from lioncash/ret
file_util: Correct return value in early exit of ReadFileToString()
This commit is contained in:
		
						commit
						2562fe4a16
					
				@ -764,7 +764,7 @@ size_t ReadFileToString(bool text_file, const char* filename, std::string& str)
 | 
				
			|||||||
    IOFile file(filename, text_file ? "r" : "rb");
 | 
					    IOFile file(filename, text_file ? "r" : "rb");
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    if (!file.IsOpen())
 | 
					    if (!file.IsOpen())
 | 
				
			||||||
        return false;
 | 
					        return 0;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    str.resize(static_cast<u32>(file.GetSize()));
 | 
					    str.resize(static_cast<u32>(file.GetSize()));
 | 
				
			||||||
    return file.ReadArray(&str[0], str.size());
 | 
					    return file.ReadArray(&str[0], str.size());
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
		Reference in New Issue
	
	Block a user