Allegro.cc - Online Community

Allegro.cc Forums » Allegro Development » Allegro 4.2.0 beta

This thread is locked; no one can reply to it. rss feed Print
Allegro 4.2.0 beta
Pradeepto Bhattacharya
Member #1,340
May 2001

Quote:

August 23

One day after Steve Terry's.

It must be my lucky day. I always wanted Shawn to post in a thread started by me. Well this is the next best thing. Cool!!! :). Shawn do not forget to drop by on 23rd August.

--
I vote for Pradeepto. - Richard Phipps
Hey; Pradeepto's alive! - 23yrold3yrold

Gideon Weems
Member #3,925
October 2003

Heheh. Pradeepto, you have a birthday fetish.

Chris Katko
Member #1,881
January 2002
avatar

Merry Christmas, Shawn!

;)

-----sig:
“Programs should be written for people to read, and only incidentally for machines to execute.” - Structure and Interpretation of Computer Programs
"Political Correctness is fascism disguised as manners" --George Carlin

Trezker
Member #1,739
December 2001
avatar

Well, happy every freakin holiday there is and a couple more...
Shawn, unless you've been lurking as crazy you have probably missed hundreds of holiday threads.

dthompson
Member #5,749
April 2005
avatar

hi,

i've been trying out some of the examples, but i've found that two (there might be more) of them don't exit when the esc key is pressed. The following line won't work on ex3d.c:

if((readkey && 0xFF) == 27)
break;

i don't understand why this doesn't work, but then again im not an ascii expert :) i pressed esc and it won't exit, which is weird because those 2 lines are used in 4.0.3's version, and that works fine. this also happens with exkeys.c.

using dev-c++ 4.9.9.2 with gcc 3.4.2, running Win98.
graphics mode used was DirectDraw accel 640x480 16bpp

thanks, dthompson

______________________________________________________
Website. It was freakdesign.bafsoft.net.
This isn't a game!

Evert
Member #794
November 2000
avatar

The beta 1 keyboard driver has problems (as in, bugs) in Windows 98.
Beta 2 should be available shortly though.

Indeterminatus
Member #737
November 2000
avatar

Quote:

i've been trying out some of the examples, but i've found that two (there might be more) of them don't exit when the esc key is pressed. The following line won't work on ex3d.c:

if((readkey && 0xFF) == 27)
break;

Are you sure that these lines read EXACTLY as you posted?

Because it doesn't really make much sense to me, && ought to be &.

Like this:

if((readkey & 0xFF) == 27)
  break;

edit:
And I'm not sure if readkey is a function or not. If it is, there are the () missing.

Like this:

if((readkey() & 0xFF) == 27)
  break;

edit 2:
Yes, it is a function. So go with the second sample, ignore the first one. I'll leave it for archiving purposes ;)

Hope that resolves the error.

_______________________________
Indeterminatus. [Atomic Butcher]
si tacuisses, philosophus mansisses

dthompson
Member #5,749
April 2005
avatar

thanks evert, looking forward to it :)

also will there be a do_circlefill function?

i'll try that new piece of code, thanks

______________________________________________________
Website. It was freakdesign.bafsoft.net.
This isn't a game!

Evert
Member #794
November 2000
avatar

Quote:

also will there be a do_circlefill function?

No. There will be no new features until 4.3.0 is released.

Matthew Leverton
Supreme Loser
January 1999
avatar

Thread closed - beta 2 is out.



Go to: