Commit 3eb7eb00 authored by Daedalusspacegames's avatar Daedalusspacegames

Add the ability to add NvFBC patches without NVENC

parent c3c1479b
...@@ -72,6 +72,10 @@ def parse_args(): ...@@ -72,6 +72,10 @@ def parse_args():
dest="fbc", dest="fbc",
action="store_false", action="store_false",
help="add driver w/o NvFBC patch") 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", parser.add_argument("version",
help="driver version") help="driver version")
args = parser.parse_args() args = parser.parse_args()
...@@ -174,7 +178,7 @@ def main(): ...@@ -174,7 +178,7 @@ def main():
else: else:
new_driver = { new_driver = {
"version": args.version, "version": args.version,
"nvenc_patch": True, "nvenc_patch": args.enc,
"nvfbc_patch": args.fbc, "nvfbc_patch": args.fbc,
} }
if url: if url:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment