mirror of
				https://git.zaroz.cloud/nintendo-back-up/yuzu/yuzu-mainline.git
				synced 2025-03-21 01:53:15 +00:00 
			
		
		
		
	caps:su Stub out SetShimLibraryVersion
Used by Animal Crossing: New Horizons when trying to take a picture.
This commit is contained in:
		
							parent
							
								
									738140fdd8
								
							
						
					
					
						commit
						4b16e93f1a
					
				@ -2,6 +2,8 @@
 | 
			
		||||
// Licensed under GPLv2 or any later version
 | 
			
		||||
// Refer to the license.txt file included.
 | 
			
		||||
 | 
			
		||||
#include "common/logging/log.h"
 | 
			
		||||
#include "core/hle/ipc_helpers.h"
 | 
			
		||||
#include "core/hle/service/caps/caps_su.h"
 | 
			
		||||
 | 
			
		||||
namespace Service::Capture {
 | 
			
		||||
@ -9,7 +11,7 @@ namespace Service::Capture {
 | 
			
		||||
CAPS_SU::CAPS_SU() : ServiceFramework("caps:su") {
 | 
			
		||||
    // clang-format off
 | 
			
		||||
    static const FunctionInfo functions[] = {
 | 
			
		||||
        {32, nullptr, "SetShimLibraryVersion"},
 | 
			
		||||
        {32, &CAPS_SU::SetShimLibraryVersion, "SetShimLibraryVersion"},
 | 
			
		||||
        {201, nullptr, "SaveScreenShot"},
 | 
			
		||||
        {203, nullptr, "SaveScreenShotEx0"},
 | 
			
		||||
        {205, nullptr, "SaveScreenShotEx1"},
 | 
			
		||||
@ -22,4 +24,11 @@ CAPS_SU::CAPS_SU() : ServiceFramework("caps:su") {
 | 
			
		||||
 | 
			
		||||
CAPS_SU::~CAPS_SU() = default;
 | 
			
		||||
 | 
			
		||||
void CAPS_SU::SetShimLibraryVersion(Kernel::HLERequestContext& ctx) {
 | 
			
		||||
    LOG_WARNING(Service_Capture, "(STUBBED) called");
 | 
			
		||||
 | 
			
		||||
    IPC::ResponseBuilder rb{ctx, 2};
 | 
			
		||||
    rb.Push(RESULT_SUCCESS);
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
} // namespace Service::Capture
 | 
			
		||||
 | 
			
		||||
@ -16,6 +16,9 @@ class CAPS_SU final : public ServiceFramework<CAPS_SU> {
 | 
			
		||||
public:
 | 
			
		||||
    explicit CAPS_SU();
 | 
			
		||||
    ~CAPS_SU() override;
 | 
			
		||||
 | 
			
		||||
private:
 | 
			
		||||
    void SetShimLibraryVersion(Kernel::HLERequestContext& ctx);
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
} // namespace Service::Capture
 | 
			
		||||
 | 
			
		||||
		Loading…
	
		Reference in New Issue
	
	Block a user