瀏覽代碼

* src/io.c:

+ Fixed a bug that caused ButtonRelease events to be forgotten under X11.
  * examples/cacaview.c:
    + Use <stdlib.h> instead of <malloc.h>.
tags/v0.99.beta14
Sam Hocevar sam 21 年之前
父節點
當前提交
731bffa99e
共有 2 個文件被更改,包括 2 次插入2 次删除
  1. +1
    -1
      examples/cacaview.c
  2. +1
    -1
      src/io.c

+ 1
- 1
examples/cacaview.c 查看文件

@@ -25,7 +25,7 @@

#include <stdio.h>
#include <string.h>
#include <malloc.h>
#include <stdlib.h>
#include <unistd.h>

#if defined(HAVE_IMLIB2_H)


+ 1
- 1
src/io.c 查看文件

@@ -110,7 +110,7 @@ unsigned int caca_get_event(void)
if(xevent.type == ButtonPress)
return CACA_EVENT_MOUSE_PRESS | 1;

if(xevent.type == ButtonPress)
if(xevent.type == ButtonRelease)
return CACA_EVENT_MOUSE_RELEASE | 1;

if(xevent.type == KeyPress)


Loading…
取消
儲存