mirror of
				https://git.suyu.dev/suyu/suyu
				synced 2025-10-25 13:12:48 -05:00 
			
		
		
		
	texture_cache: Correct variable naming.
This commit is contained in:
		| @@ -225,9 +225,9 @@ public: | ||||
|         } | ||||
|         const CacheAddr page = cache_addr >> registry_page_bits; | ||||
|         std::vector<TSurface>& list = registry[page]; | ||||
|         for (auto& s : list) { | ||||
|             if (s->GetCacheAddr() == cache_addr) { | ||||
|                 return s; | ||||
|         for (auto& surface : list) { | ||||
|             if (surface->GetCacheAddr() == cache_addr) { | ||||
|                 return surface; | ||||
|             } | ||||
|         } | ||||
|         return nullptr; | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 Fernando Sahmkow
					Fernando Sahmkow