mirror of
				https://git.zaroz.cloud/nintendo-back-up/yuzu/yuzu.git
				synced 2025-05-12 00:45:25 +00:00 
			
		
		
		
	debug_utils: Initialize active_breakpoint member of DebugContext
Ensures that all class members are initialized.
This commit is contained in:
		
							parent
							
								
									165c23c848
								
							
						
					
					
						commit
						b6425c0511
					
				@ -141,8 +141,8 @@ public:
 | 
				
			|||||||
    }
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    // TODO: Evaluate if access to these members should be hidden behind a public interface.
 | 
					    // TODO: Evaluate if access to these members should be hidden behind a public interface.
 | 
				
			||||||
    std::array<BreakPoint, (int)Event::NumEvents> breakpoints;
 | 
					    std::array<BreakPoint, static_cast<int>(Event::NumEvents)> breakpoints;
 | 
				
			||||||
    Event active_breakpoint;
 | 
					    Event active_breakpoint{};
 | 
				
			||||||
    bool at_breakpoint = false;
 | 
					    bool at_breakpoint = false;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
private:
 | 
					private:
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
		Reference in New Issue
	
	Block a user