mirror of
				https://github.com/keylase/nvidia-patch.git
				synced 2025-11-04 06:32:02 +00:00 
			
		
		
		
	Merge pull request #373 from Daedalusspacegames/tool-devel
Add the ability to add NvFBC patches without NVENC
This commit is contained in:
		@@ -72,6 +72,10 @@ def parse_args():
 | 
			
		||||
                        dest="fbc",
 | 
			
		||||
                        action="store_false",
 | 
			
		||||
                        help="add driver w/o NvFBC patch")
 | 
			
		||||
    parser.add_argument("--no-enc",
 | 
			
		||||
                        dest="enc",
 | 
			
		||||
                        action="store_false",
 | 
			
		||||
                        help="add driver w/o NVENC patch")
 | 
			
		||||
    parser.add_argument("version",
 | 
			
		||||
                        help="driver version")
 | 
			
		||||
    args = parser.parse_args()
 | 
			
		||||
@@ -174,7 +178,7 @@ def main():
 | 
			
		||||
    else:
 | 
			
		||||
        new_driver = {
 | 
			
		||||
            "version": args.version,
 | 
			
		||||
            "nvenc_patch": True,
 | 
			
		||||
            "nvenc_patch": args.enc,
 | 
			
		||||
            "nvfbc_patch": args.fbc,
 | 
			
		||||
        }
 | 
			
		||||
        if url:
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user