# HG changeset patch # User Matti Hamalainen # Date 1423266029 -7200 # Node ID fc19ab0334b1be56de372fcca57b44ed7bbf7a56 # Parent 04aabecd922a12a2efad57ef0f99ff73a92b9834 Match th-libs API changes for ringbuffers. diff -r 04aabecd922a -r fc19ab0334b1 ui.c --- a/ui.c Fri Feb 06 23:07:05 2015 +0200 +++ b/ui.c Sat Feb 07 01:40:29 2015 +0200 @@ -356,7 +356,7 @@ if (currWin != NULL && (force || currWin->dirty)) { int y, offs; - qringbuf_t *buf = currWin->data; + th_ringbuf_t *buf = currWin->data; changed = TRUE; diff -r 04aabecd922a -r fc19ab0334b1 ui.h --- a/ui.h Fri Feb 06 23:07:05 2015 +0200 +++ b/ui.h Sat Feb 07 01:40:29 2015 +0200 @@ -38,7 +38,7 @@ typedef struct { - qringbuf_t *data; // "Backbuffer" data for this window + th_ringbuf_t *data; // "Backbuffer" data for this window int pos; // Current position in the window, 0 = real time BOOL dirty;