mirror of
				https://github.com/PabloMK7/citra.git
				synced 2025-10-31 13:50:03 +00:00 
			
		
		
		
	SeedDB: replace seek(tell, set) with seek(cur) (#4344)
This commit is contained in:
		
							parent
							
								
									c5b7018625
								
							
						
					
					
						commit
						fa0e82b812
					
				
					 1 changed files with 1 additions and 1 deletions
				
			
		|  | @ -34,7 +34,7 @@ bool SeedDB::Load() { | ||||||
|         LOG_ERROR(Service_FS, "Failed to read seed database count fully"); |         LOG_ERROR(Service_FS, "Failed to read seed database count fully"); | ||||||
|         return false; |         return false; | ||||||
|     } |     } | ||||||
|     if (!file.Seek(file.Tell() + SEEDDB_PADDING_BYTES, SEEK_SET)) { |     if (!file.Seek(SEEDDB_PADDING_BYTES, SEEK_CUR)) { | ||||||
|         LOG_ERROR(Service_FS, "Failed to skip seed database padding"); |         LOG_ERROR(Service_FS, "Failed to skip seed database padding"); | ||||||
|         return false; |         return false; | ||||||
|     } |     } | ||||||
|  |  | ||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue