mirror of
				https://github.com/PabloMK7/citra.git
				synced 2025-10-30 21:30:04 +00:00 
			
		
		
		
	Merge pull request #3259 from lioncash/init-order
ac: Correct constructor initialization order
This commit is contained in:
		
						commit
						951b023a3d
					
				
					 1 changed files with 1 additions and 1 deletions
				
			
		|  | @ -170,7 +170,7 @@ void Module::Interface::SetClientVersion(Kernel::HLERequestContext& ctx) { | ||||||
| } | } | ||||||
| 
 | 
 | ||||||
| Module::Interface::Interface(std::shared_ptr<Module> ac, const char* name, u32 max_session) | Module::Interface::Interface(std::shared_ptr<Module> ac, const char* name, u32 max_session) | ||||||
|     : ac(std::move(ac)), ServiceFramework(name, max_session) {} |     : ServiceFramework(name, max_session), ac(std::move(ac)) {} | ||||||
| 
 | 
 | ||||||
| void InstallInterfaces(SM::ServiceManager& service_manager) { | void InstallInterfaces(SM::ServiceManager& service_manager) { | ||||||
|     auto ac = std::make_shared<Module>(); |     auto ac = std::make_shared<Module>(); | ||||||
|  |  | ||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue