diff options
| author | 2026-04-13 17:01:47 -0400 | |
|---|---|---|
| committer | 2026-04-13 17:01:47 -0400 | |
| commit | 77b54c35bf9587450cd636e0d7df37e190e28bfb (patch) | |
| tree | a290efdd8b09066847199f3f52a32be70d24ef51 /src/liana/list.h | |
| parent | 20617b9c80cf8d8051ecdb53a2c22f68c012f21b (diff) | |
| download | camu-77b54c35bf9587450cd636e0d7df37e190e28bfb.tar.gz camu-77b54c35bf9587450cd636e0d7df37e190e28bfb.tar.bz2 camu-77b54c35bf9587450cd636e0d7df37e190e28bfb.zip | |
Smaller stuff that went uncommitted
Signed-off-by: Andrew Opalach <andrew@akon.city>
Diffstat (limited to 'src/liana/list.h')
| -rw-r--r-- | src/liana/list.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/liana/list.h b/src/liana/list.h index e8b1769..32715bd 100644 --- a/src/liana/list.h +++ b/src/liana/list.h @@ -8,10 +8,10 @@ #define LIANA_SEQUENCE_ANY -1 -#define LIANA_BASE_DELAY 1250000u // 1250ms -#define LIANA_BASE_PING 150000u // 150ms +#define LIANA_BASE_DELAY ((u64)2000000) // 2000ms +#define LIANA_BASE_PING ((u64)500000) // 500ms #define LIANA_PAUSE_DELAY LIANA_BASE_PING -#define LIANA_DELAY_IGNORE 0u +#define LIANA_DELAY_IGNORE ((u64)0) #define LIANA_BUFFER_AHEAD 2 @@ -79,6 +79,7 @@ struct lia_list_entry { u64 start; u64 paused_at; u64 offset; + u64 delay; u64 duration; u8 load; bool held; |