From d418237e2de6f23260f447d5bc5547d940387c56 Mon Sep 17 00:00:00 2001 From: Josh Bailey Date: Fri, 29 Nov 2024 07:35:37 +0000 Subject: [PATCH] sidplayfp args changed. --- desidulate/sidinfo.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/desidulate/sidinfo.py b/desidulate/sidinfo.py index 1c9f025..29535d4 100755 --- a/desidulate/sidinfo.py +++ b/desidulate/sidinfo.py @@ -101,7 +101,7 @@ def decodeflags(rsid, x): ) -def scrape_cia_timer(sidfile, validate_ctrl, tune, cutoff_time=0.5): +def scrape_cia_timer(sidfile, validate_ctrl, tune, cutoff_time=1): siddir = os.path.realpath(os.path.dirname(sidfile)) client = docker.from_env() timer_low = 0 @@ -111,7 +111,7 @@ def scrape_cia_timer(sidfile, validate_ctrl, tune, cutoff_time=0.5): instruction_cutoff = cutoff_time * 1e6 instructions = 0 cmd = [ - f'-t{cutoff_time}', '-q', '--none', '--cpu-debug', '-os', '--delay=0', f'-o{tune}', + f'-t{cutoff_time}', '-q', '--cpu-debug', '--delay=0', f'-os{tune}', '-w/dev/null', os.path.join('tmp', os.path.basename(sidfile))] sidplayfp = client.containers.run( SIDPLAYFP_IMAGE, cmd,