This website works better with JavaScript.
Home
Help
Sign In
cacalabs
/
libcaca
mirror of
https://github.com/cacalabs/libcaca.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
7
Wiki
Activity
Browse Source
* src/graphics:
+ Initialise default height at 32 (as in aalib).
tags/v0.99.beta14
Sam Hocevar
sam
21 years ago
parent
e42ec298bb
commit
08aefffbcf
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
src/graphics.c
+ 1
- 1
src/graphics.c
View File
@@ -446,7 +446,7 @@ int _caca_init_graphics(void)
if(getenv("CACA_HEIGHT"))
_caca_height = atoi(getenv("CACA_HEIGHT"));
if(!_caca_height)
_caca_height = 2
5
;
_caca_height =
3
2;
x11_screen = malloc(_caca_width * _caca_height * sizeof(int));
if(x11_screen == NULL)
Write
Preview
Loading…
Cancel
Save