mirror of
				https://git.suyu.dev/suyu/suyu
				synced 2025-11-03 16:39:01 -06:00 
			
		
		
		
	kernel: svc: Replace -1ULL with 0xFFFFFFFFFFFFFFFF
Resolves the C4146 compiler warning on MSVC.
This commit is contained in:
		@@ -899,7 +899,7 @@ static ResultCode GetInfo(Core::System& system, u64* result, u64 info_id, Handle
 | 
			
		||||
 | 
			
		||||
        // Verify the requested core is valid.
 | 
			
		||||
        const bool core_valid =
 | 
			
		||||
            (info_sub_id == static_cast<u64>(-1ULL)) ||
 | 
			
		||||
            (info_sub_id == 0xFFFFFFFFFFFFFFFF) ||
 | 
			
		||||
            (info_sub_id == static_cast<u64>(system.Kernel().CurrentPhysicalCoreIndex()));
 | 
			
		||||
        R_UNLESS(core_valid, ResultInvalidCombination);
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user