PureBasic 6.30 beta 3 is ready !

Developed or developing a new product in PureBasic? Tell the world about it.
User avatar
minimy
Enthusiast
Enthusiast
Posts: 665
Joined: Mon Jul 08, 2013 8:43 pm
Location: off world

Re: PureBasic 6.30 beta 3 is ready !

Post by minimy »

It's been a while since I entered the forum but I see that the working creatures are still working. :lol:
Wow! PB is growing and growing.
Great! we have new GUI for games!
Excellent new ScreenGadget, thanks pf_shadoko!
1000 x 1000 thanks PB team!

I need rebuild my game again? :lol: naahhh! :mrgreen:
If translation=Error: reply="Sorry, Im Spanish": Endif
miso
Enthusiast
Enthusiast
Posts: 486
Joined: Sat Oct 21, 2023 4:06 pm
Location: Hungary

Re: PureBasic 6.30 beta 3 is ready !

Post by miso »

Thank you Fred and Team and PfShadoko!
pjsmith67
User
User
Posts: 49
Joined: Thu Apr 26, 2018 3:09 pm

Re: PureBasic 6.30 beta 3 is ready !

Post by pjsmith67 »

this code compiles in 6.21 but does not 6.3b3, it says the declaration does not match the real procedure.

Code: Select all

Prototype test_protocol()

Declare foo(*a.test_protocol)

Procedure foo(*a.test_protocol)
EndProcedure
If I change it to this, it works.

Code: Select all

Prototype test_protocol()

Declare foo(*a)

Procedure foo(*a.test_protocol)
EndProcedure
Phil
User avatar
idle
Always Here
Always Here
Posts: 5997
Joined: Fri Sep 21, 2007 5:52 am
Location: New Zealand

Re: PureBasic 6.30 beta 3 is ready !

Post by idle »

pjsmith67 wrote: Thu Oct 16, 2025 6:00 am this code compiles in 6.21 but does not 6.3b3, it says the declaration does not match the real procedure.

Code: Select all

Prototype test_protocol()

Declare foo(*a.test_protocol)

Procedure foo(*a.test_protocol)
EndProcedure
If I change it to this, it works.

Code: Select all

Prototype test_protocol()

Declare foo(*a)

Procedure foo(*a.test_protocol)
EndProcedure
Phil
it's been reported. you can drop the * in the declare and it will probably work
Rinzwind
Enthusiast
Enthusiast
Posts: 701
Joined: Wed Mar 11, 2009 4:06 pm
Location: NL

Re: PureBasic 6.30 beta 3 is ready !

Post by Rinzwind »

Any chance of per monitor dpi support?
User avatar
HeX0R
Addict
Addict
Posts: 1211
Joined: Mon Sep 20, 2004 7:12 am
Location: Hell

Re: PureBasic 6.30 beta 3 is ready !

Post by HeX0R »

Code: Select all

             ____ 
    .__     /_   |
  __|  |___  |   |
 /__    __/  |   |
    |__|     |___|
                  
Post Reply