mirror of
				https://git.suyu.dev/suyu/suyu
				synced 2025-11-04 00:49:02 -06:00 
			
		
		
		
	input_common/input_engine: Ensure PadIdentifier UUIDs have a valid initial state
The default constructor of a UUID instance doesn't initialize the underlying array.
This commit is contained in:
		@@ -16,7 +16,7 @@
 | 
			
		||||
 | 
			
		||||
// Pad Identifier of data source
 | 
			
		||||
struct PadIdentifier {
 | 
			
		||||
    Common::UUID guid{};
 | 
			
		||||
    Common::UUID guid{Common::INVALID_UUID};
 | 
			
		||||
    std::size_t port{};
 | 
			
		||||
    std::size_t pad{};
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user