diff options
author | inmarket <andrewh@inmarket.com.au> | 2018-07-08 15:15:15 +1000 |
---|---|---|
committer | inmarket <andrewh@inmarket.com.au> | 2018-07-08 15:15:15 +1000 |
commit | 93da5a0578e7f16ea846eb257f36a24e316ef8d4 (patch) | |
tree | b0e08e991919fdb1fa9079b0ea40c23909cbcd3e /demos/modules/gaudio/oscilloscope | |
parent | 215f31ee3dd27f461540384cdba04b58b481fadc (diff) | |
download | uGFX-93da5a0578e7f16ea846eb257f36a24e316ef8d4.tar.gz uGFX-93da5a0578e7f16ea846eb257f36a24e316ef8d4.tar.bz2 uGFX-93da5a0578e7f16ea846eb257f36a24e316ef8d4.zip |
gDelayNone/gDelayForever to replace TIME_IMMEDIATE/TIME_INFINITE
Diffstat (limited to 'demos/modules/gaudio/oscilloscope')
-rw-r--r-- | demos/modules/gaudio/oscilloscope/gwinosc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/demos/modules/gaudio/oscilloscope/gwinosc.c b/demos/modules/gaudio/oscilloscope/gwinosc.c index 17ea9566..e46640e8 100644 --- a/demos/modules/gaudio/oscilloscope/gwinosc.c +++ b/demos/modules/gaudio/oscilloscope/gwinosc.c @@ -118,7 +118,7 @@ void gwinScopeWaitForTrace(GHandle gh) { return; /* Wait for a set of audio conversions */ - paud = gaudioRecordGetData(TIME_INFINITE); + paud = gaudioRecordGetData(gDelayForever); /* Ensure we are drawing in the right area */ #if GDISP_NEED_CLIP |