Search found 15 matches

by AntiBNI
Thu Oct 04, 2007 7:53 am
Forum: PSP Development
Topic: *** No rule to make target `graphics.o'
Replies: 6
Views: 2317

I have placed graphics.h and graphics.c in the same directory of my app and now i get an error like if i wouldn't been calling the graphics lib o.0 like undefined reference to 'initGraphics()' and stuff Im just experimenting with PNGs with PSP tho,il work on a brew after i finish with this error >_<...
by AntiBNI
Wed Oct 03, 2007 10:06 pm
Forum: PSP Development
Topic: *** No rule to make target `graphics.o'
Replies: 6
Views: 2317

oh,lol xD

Il try it when i get home cuz im at the University right now.

Thnaks for the answer.
by AntiBNI
Wed Oct 03, 2007 8:34 pm
Forum: PSP Development
Topic: *** No rule to make target `graphics.o'
Replies: 6
Views: 2317

where should they be in?
by AntiBNI
Wed Oct 03, 2007 11:33 am
Forum: PSP Development
Topic: *** No rule to make target `graphics.o'
Replies: 6
Views: 2317

*** No rule to make target `graphics.o'

Im getting that error : make: *** No rule to make target `graphics.o', needed by `hello.elf' every time i try to incorporate graphics.h into my app. Any ideas? *Edit* This is my Makefile TARGET = hello OBJS = main.o graphics.o framebuffer.o CFLAGS = -O2 -G0 -Wall CXXFLAGS = $&#40;CFLAGS&#41;...
by AntiBNI
Sun Sep 30, 2007 7:38 am
Forum: PSP Development
Topic: Need help on my menu
Replies: 3
Views: 1280

Need help on my menu

Im having a bit of a problem with my menu. when the user trys to select a number it doesn't stop one by one,instead it rokets all the way to the top of the menu. this is the code for better understanding of my problem: //I want to put something that pauses the counter until the user presses up again...
by AntiBNI
Thu Sep 27, 2007 12:10 pm
Forum: PSP Development
Topic: having truoble with errors compiling
Replies: 11
Views: 4818

Well, i re-did all my code and i'm now error free.

but now i have another problem,god they never go away >_<!

cgwin tells me

cannot find -lgraphics in usr/local/pspdev/lib/gcc/psp/4.1.0/../../../../psp/bin

where the hell is that directory,i have searched and searched but i cant find it.
by AntiBNI
Wed Sep 26, 2007 11:29 am
Forum: PSP Development
Topic: having truoble with errors compiling
Replies: 11
Views: 4818

Well, i found a solution for the first error but created another one xD fixed this if sceIoGetstat&#40;"ms0&#58;/PSP/GAME150/underdev/text.txt",io_stat_t&#41; = 0 to this char read = sceIoGetstat&#40;"ms0&#58;/PSP/GAME150/underdev/text.txt",io_stat_t&#41;;...
by AntiBNI
Wed Sep 26, 2007 10:43 am
Forum: PSP Development
Topic: having truoble with errors compiling
Replies: 11
Views: 4818

hmmm,It's C++ lol xD

**edit**
I tried it but still.
by AntiBNI
Wed Sep 26, 2007 9:05 am
Forum: PSP Development
Topic: having truoble with errors compiling
Replies: 11
Views: 4818

having truoble with errors compiling

Heres my code: Code was redone and error free Heres my make file: TARGET = hello OBJS = main.o CFLAGS = -O2 -G0 -Wall CXXFLAGS = $&#40;CFLAGS&#41; -fno-exceptions -fno-rtti ASFLAGS = $&#40;CFLAGS&#41; LIBDIR = LIBS = -lpsppower -lpspctrl -lgraphics LDFLAGS = EXTRA_TARGETS = EBOOT.PBP...
by AntiBNI
Tue Sep 25, 2007 11:01 am
Forum: PSP Development
Topic: sceIoWrite MiltiLine Writing?
Replies: 11
Views: 4016

Thanks a bunch!^_^

Help is greatly appreciated.
by AntiBNI
Tue Sep 25, 2007 8:38 am
Forum: PSP Development
Topic: sceIoWrite MiltiLine Writing?
Replies: 11
Views: 4016

I'm using pspDebugScreenPrintf,how many rows are?if its not too much to ask ^_^
by AntiBNI
Tue Sep 25, 2007 8:14 am
Forum: PSP Development
Topic: sceIoWrite MiltiLine Writing?
Replies: 11
Views: 4016

I checked with Notepad++ and Word pad and Word pad shows 2small square boxes (Null Spaces) at the beginning of the text. Notepad++ shows 2 null spaces. I guess sceIoRead should read them right. **Out of topic** I have another question. i know that the psp has 480 x 272 in pixels but,when i put 240x1...
by AntiBNI
Tue Sep 25, 2007 1:33 am
Forum: PSP Development
Topic: sceIoWrite MiltiLine Writing?
Replies: 11
Views: 4016

I tried that the first time but when i saw the text there was multiple lines but they where in the following order: (X) "1 blank space"(O)"small squarebox" "4blank spaces"Trangle I opened it on Notepad,im in university right now so i can't check it with wordpad or Notep...
by AntiBNI
Mon Sep 24, 2007 8:34 pm
Forum: PSP Development
Topic: sceIoWrite MiltiLine Writing?
Replies: 11
Views: 4016

Im on Windows.
by AntiBNI
Mon Sep 24, 2007 1:23 pm
Forum: PSP Development
Topic: sceIoWrite MiltiLine Writing?
Replies: 11
Views: 4016

sceIoWrite MiltiLine Writing?

hmm i have started developing with C++ like 4 days ago and i need to write some text on multiple lines of a text file. I have tried alot of ways,some one told me that sceioWrite doesn't accept \n so i tried passing it from sprintf but when i checked the text file it writed the text but in the part w...