From: Shawn Hargreaves Newsgroups: comp.os.msdos.djgpp Subject: Re: A few Allegro/Rhide problems :P Date: Fri, 14 Feb 1997 20:58:50 +0000 Organization: None Distribution: world Message-ID: References: <5e0qlf$bf9 AT freenet-news DOT carleton DOT ca> NNTP-Posting-Host: talula.demon.co.uk MIME-Version: 1.0 Lines: 36 To: djgpp AT delorie DOT com DJ-Gateway: from newsgroup comp.os.msdos.djgpp Paul Derbyshire writes: >Allegro bug #1: Ctrl-Alt-End does not always work. It often does, but it > occasionally doesn't. What happens when it doesn't? Nothing, or a lockup? When it doesn't work, does pressing it again immediately afterwards do the trick? >Allegro bug #2: This doesn't work either, though it should: > >if(key[KEY_CONTROL] && key[KEY_STOP]) abort_program(); Again, what happens when it goes wrong? I just wrote a little test: #include void main() { allegro_init(); install_keyboard(); for (;;) { if (key[KEY_CONTROL] && key[KEY_STOP]) break; } } and that works correctly, at least for me. Can you post some source that demonstrates your problem? I'll leave the Rhide problems for Robert to deal with :-) /* * Shawn Hargreaves - shawn AT talula DOT demon DOT co DOT uk - http://www.talula.demon.co.uk/ * Ghoti: 'gh' as in 'enough', 'o' as in 'women', and 'ti' as in 'nation'. */