mirror of
				https://git.h3cjp.net/H3cJP/yuzu.git
				synced 2025-11-04 09:05:04 +00:00 
			
		
		
		
	emu_window: Fix initializer list order.
Gets rid of a warning on OSX.
This commit is contained in:
		
							parent
							
								
									8717c79fe4
								
							
						
					
					
						commit
						827e7a1898
					
				| 
						 | 
				
			
			@ -76,9 +76,9 @@ public:
 | 
			
		|||
 | 
			
		||||
protected:
 | 
			
		||||
    EmuWindow():
 | 
			
		||||
        m_window_title(Common::StringFromFormat("Citra | %s-%s", Common::g_scm_branch, Common::g_scm_desc)),
 | 
			
		||||
        m_client_area_width(640),
 | 
			
		||||
        m_client_area_height(480),
 | 
			
		||||
        m_window_title(Common::StringFromFormat("Citra | %s-%s", Common::g_scm_branch, Common::g_scm_desc))
 | 
			
		||||
        m_client_area_height(480)
 | 
			
		||||
    {}
 | 
			
		||||
    virtual ~EmuWindow() {}
 | 
			
		||||
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
		Reference in a new issue