mirror of
				https://git.zaroz.cloud/nintendo-back-up/yuzu/yuzu-mainline.git
				synced 2025-03-21 01:53:15 +00:00 
			
		
		
		
	
						commit
						8434630dcc
					
				@ -40,7 +40,7 @@ VirtualDir MiiModel() {
 | 
			
		||||
    out->AddFile(std::make_shared<ArrayVfsFile<MiiModelData::SHAPE_MID.size()>>(
 | 
			
		||||
        MiiModelData::SHAPE_MID, "ShapeMid.dat"));
 | 
			
		||||
 | 
			
		||||
    return std::move(out);
 | 
			
		||||
    return out;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
} // namespace FileSys::SystemArchive
 | 
			
		||||
 | 
			
		||||
@ -76,7 +76,7 @@ std::unique_ptr<Input::ButtonDevice> Keyboard::Create(const Common::ParamPackage
 | 
			
		||||
    int key_code = params.Get("code", 0);
 | 
			
		||||
    std::unique_ptr<KeyButton> button = std::make_unique<KeyButton>(key_button_list);
 | 
			
		||||
    key_button_list->AddKeyButton(key_code, button.get());
 | 
			
		||||
    return std::move(button);
 | 
			
		||||
    return button;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
void Keyboard::PressKey(int key_code) {
 | 
			
		||||
 | 
			
		||||
@ -145,7 +145,7 @@ std::unique_ptr<Input::MotionDevice> MotionEmu::Create(const Common::ParamPackag
 | 
			
		||||
    // Previously created device is disconnected here. Having two motion devices for 3DS is not
 | 
			
		||||
    // expected.
 | 
			
		||||
    current_device = device_wrapper->device;
 | 
			
		||||
    return std::move(device_wrapper);
 | 
			
		||||
    return device_wrapper;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
void MotionEmu::BeginTilt(int x, int y) {
 | 
			
		||||
 | 
			
		||||
		Loading…
	
		Reference in New Issue
	
	Block a user