changeset 659:fc19ab0334b1

Match th-libs API changes for ringbuffers.
author Matti Hamalainen <ccr@tnsp.org>
date Sat, 07 Feb 2015 01:40:29 +0200
parents 04aabecd922a
children 41bfde66634d
files ui.c ui.h
diffstat 2 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- 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;
 
--- 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;