mirror of
				https://git.suyu.dev/suyu/suyu
				synced 2025-11-04 00:49:02 -06:00 
			
		
		
		
	Vulkan: fix waiting on semaphore.
This commit is contained in:
		
				
					committed by
					
						
						Fernando Sahmkow
					
				
			
			
				
	
			
			
			
						parent
						
							916b882ea8
						
					
				
				
					commit
					bb3e95133d
				
			@@ -70,7 +70,9 @@ public:
 | 
				
			|||||||
            return;
 | 
					            return;
 | 
				
			||||||
        }
 | 
					        }
 | 
				
			||||||
        // If none of the above is hit, fallback to a regular wait
 | 
					        // If none of the above is hit, fallback to a regular wait
 | 
				
			||||||
        semaphore.Wait(tick);
 | 
					        while (!semaphore.Wait(tick)) {
 | 
				
			||||||
 | 
					        }
 | 
				
			||||||
 | 
					        Refresh();
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
private:
 | 
					private:
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user