Browse Source

* src/graphics.c:

+ Fixed a typo preventing Win32 builds.
  * src/event.c:
    + Renamed io.c into event.c.
  * THANKS:
    + Added Gentoo, NetBSD and FreeBSD porters.
tags/v0.99.beta14
Sam Hocevar sam 21 years ago
parent
commit
ef067b4838
4 changed files with 7 additions and 3 deletions
  1. +4
    -0
      THANKS
  2. +1
    -1
      src/Makefile.am
  3. +1
    -1
      src/event.c
  4. +1
    -1
      src/graphics.c

+ 4
- 0
THANKS View File

@@ -1,6 +1,10 @@
$Id$ $Id$


Derk-Jan Hartman <thedj@users.sourceforge.net> - Gentoo ebuild file
Gildas Bazin <gbazin@netcourrier.com> - win32 driver improvements
Jan Hubicka <hubicka@freesoft.cz> - aafire Jan Hubicka <hubicka@freesoft.cz> - aafire
Michele Bini <mibin@tin.it> - original SDL plasma Michele Bini <mibin@tin.it> - original SDL plasma
Richard Zidlicky <rz@linux-m68k.org> - rpm specfile Richard Zidlicky <rz@linux-m68k.org> - rpm specfile
Thomas Klausner <wiz@NetBSD.org> - NetBSD port maintainer
Vincent Tantardini <vinc@FreeBSD-fr.org> - FreeBSD port maintainer



+ 1
- 1
src/Makefile.am View File

@@ -8,7 +8,7 @@ libcaca_a_SOURCES = \
caca.h \ caca.h \
caca_internals.h \ caca_internals.h \
graphics.c \ graphics.c \
io.c \
event.c \
math.c \ math.c \
line.c \ line.c \
box.c \ box.c \


src/io.c → src/event.c View File

@@ -19,7 +19,7 @@
* 02111-1307 USA * 02111-1307 USA
*/ */


/** \file io.c
/** \file event.c
* \version \$Id$ * \version \$Id$
* \author Sam Hocevar <sam@zoy.org> * \author Sam Hocevar <sam@zoy.org>
* \brief Event handling * \brief Event handling

+ 1
- 1
src/graphics.c View File

@@ -826,7 +826,7 @@ int _caca_init_graphics(void)
win32_back = CreateConsoleScreenBuffer(GENERIC_READ | GENERIC_WRITE, win32_back = CreateConsoleScreenBuffer(GENERIC_READ | GENERIC_WRITE,
0, NULL, 0, NULL,
CONSOLE_TEXTMODE_BUFFER, NULL); CONSOLE_TEXTMODE_BUFFER, NULL);
if(!win32_back || win328back == INVALID_HANDLE_VALUE)
if(!win32_back || win32_back == INVALID_HANDLE_VALUE)
return -1; return -1;


if(!GetConsoleScreenBufferInfo(win32_hout, &csbi)) if(!GetConsoleScreenBufferInfo(win32_hout, &csbi))


Loading…
Cancel
Save