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
* examples/aafire.c:
+ Only quit upon keypress, not mouse motion.
tags/v0.99.beta14
Sam Hocevar
sam
21 years ago
parent
21930711cd
commit
a0d00db04a
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
examples/aafire.c
+ 1
- 1
examples/aafire.c
View File
@@ -232,7 +232,7 @@ game (void)
int event;
gentable ();
#ifdef LIBCACA
while (!(event = caca_get_event()))
while (!(event = caca_get_event()
& CACA_EVENT_KEY_PRESS
))
#else
while (!(event = aa_getevent (context, 0)) || event == AA_RESIZE)
#endif
Write
Preview
Loading…
Cancel
Save