OSK Libraries

Discuss the development of new homebrew software, tools and libraries.

Moderators: cheriff, TyRaNiD

User avatar
Jim
Posts: 476
Joined: Sat Jul 02, 2005 10:06 pm
Location: Sydney
Contact:

Post by Jim »

now you're missing zlib. the fix is very similar.

Jim
J.F.
Posts: 2906
Joined: Sun Feb 22, 2004 11:41 am

Post by J.F. »

You need -lpng -lz -lm in that order.
Producted
Posts: 56
Joined: Thu Jun 04, 2009 12:16 am

Post by Producted »

Hurray! Thanks everybody who helped me finding a solution. Even on the third page! (especially you, J.F.)

Btw, I found out that this community is okay, so I'll drop by, now and then.

EDIT: Oh wait, this might not be solved yet (PSP Freezes on start of homebrew). Will try to fix it myself first.

EDIT2: Fixed that ^
Now I've got this, and meep returns 0:

Code: Select all

	int meep; 

	danzeff_load();
	if(danzeff_isinitialized()) 
	{
		meep = 1;
		danzeff_moveTo(10, 10);
		danzeff_render();
	
	
	}
	else
	{

		meep = 0;
	
	}
J.F.
Posts: 2906
Joined: Sun Feb 22, 2004 11:41 am

Post by J.F. »

You may be missing the pictures danzeff needs when it loads. Make sure you have the directory with the images in the right place.
Producted
Posts: 56
Joined: Thu Jun 04, 2009 12:16 am

Post by Producted »

Whoops, totally forgot that...
Thanks again.

This stuff is totally solved now.
J.F.
Posts: 2906
Joined: Sun Feb 22, 2004 11:41 am

Post by J.F. »

Glad you finally got it going - it's nice to use... which is why I put it in Basilisk II. The next best thing to actually having a keyboard. :)
Post Reply