smoke: Remove unused offset member

Signed-off-by: Daniel Stone <daniel@fooishbar.org>
This commit is contained in:
Daniel Stone 2012-11-07 17:51:36 +11:00 committed by Kristian Høgsberg
parent cf18a32a39
commit 4eb445abba
1 changed files with 1 additions and 2 deletions

View File

@ -37,7 +37,7 @@ struct smoke {
struct window *window;
struct widget *widget;
int width, height;
int offset, current;
int current;
uint32_t time;
struct { float *d, *u, *v; } b[2];
};
@ -295,7 +295,6 @@ int main(int argc, char *argv[])
window_set_buffer_type(smoke.window, WINDOW_BUFFER_TYPE_SHM);
clock_gettime(CLOCK_MONOTONIC, &ts);
srandom(ts.tv_nsec);
smoke.offset = random();
smoke.current = 0;
size = smoke.height * smoke.width;