Page 2 of 4 FirstFirst 1234 LastLast
Results 11 to 20 of 32

Thread: sdlBasic for PSP version 0.5

                  
   
  1. #11
    DCEmu Pro osgeld's Avatar
    Join Date
    Jan 2007
    Posts
    822
    Rep Power
    70

    Default

    i did not experience this

    (cough) this is why a psp version website would be good

    [purely optional] i have a host account with 500gb of space and a tb a month bandwidth on mutiple oc4's, ... and i dont really use it .. but im still prepaid for another 175 days, so i offer free hosting to projects im interested in

    setup included

    if you wanna

    and yea im going to renew it when it comes up

  2. #12
    DCEmu Newbie
    Join Date
    May 2008
    Posts
    15
    Rep Power
    0

    Default

    Do you have a domain?

    Maybe I could help out..... I run pspheaven.net

    You could setup for example pspsdl.pspheaven.net or something like that! I'd me much more than happy to do so. I'd let you use the forums too if you'd like I'll make ya a mod, etc. I'd love to have you on the site. Let me know.

  3. #13
    DCEmu Pro osgeld's Avatar
    Join Date
    Jan 2007
    Posts
    822
    Rep Power
    70

    Default

    cheesefactory.us

    alot tho buy their own "el cheapo" domain (mine cost a 1.99$) and point it to my host

    its not like a "scene" site, its just space for project websites of all nature

    nothing is intertwined ect, just your little space on the web for your project (just an offer to the op, doesnt matter to me either way )
    Last edited by osgeld; May 24th, 2008 at 06:29.

  4. #14
    DCEmu Newbie
    Join Date
    May 2008
    Posts
    15
    Rep Power
    0

    Default

    sounds like a space for a cheese site lol..... but you can always get a domain for 3-9$ and put that on it

  5. #15
    PSP Coder deniska's Avatar
    Join Date
    Jul 2005
    Posts
    1,557
    Rep Power
    80

    Default

    Quote Originally Posted by acer5050 View Post
    Hi love your app.

    Seems like a great language to help me get into coding and mess around with some homebrew.....

    One question though. I'm working on an application that will work as a magazine viewer (magazines in .jpg) all goes well on the pc and on the psp until I get to page 9 then it freezes! My code below whats wrong? btw is there a way to make it so that i can have a button to go back and not just forward? Thanks
    You running out of memory since you ask for a new slot for each image... try doing following:

    waitkey(k_return)
    i=1
    while 1
    cls
    if (i<10) then
    image=loadimage("media/00" & i &".jpg",0)
    else
    image=loadimage("media/0" & i &".jpg",0)
    end if
    pastebob(0,0,image)
    prints(i)
    waitkey
    if key(K_up) then
    i=i+1
    end if
    if key(K_down) then
    i=i-1
    end if
    end while


    ( up & down should should take you to next/prev image; you still need to put a couple more conditions to make sure you don't run outside of your image list)

  6. #16
    PSP Coder deniska's Avatar
    Join Date
    Jul 2005
    Posts
    1,557
    Rep Power
    80

    Default

    Quote Originally Posted by acer5050 View Post
    psp slim 3.90M33-3 no problem

    btw, why is memory card in constant use?
    starting your program with setdisplay() call should take care of those debugging writes to memory stick

  7. #17
    DCEmu Newbie
    Join Date
    May 2008
    Posts
    15
    Rep Power
    0

    Default

    thank you for your help

    EDIT

    I've been looking all over and cannot figure it out...
    Once it gets to the end there are no images and I get an image not found error.
    how can it just exit instead?
    Last edited by acer5050; May 27th, 2008 at 23:04.

  8. #18
    PSP Coder deniska's Avatar
    Join Date
    Jul 2005
    Posts
    1,557
    Rep Power
    80

    Default

    Quote Originally Posted by acer5050 View Post
    thank you for your help

    EDIT

    I've been looking all over and cannot figure it out...
    Once it gets to the end there are no images and I get an image not found error.
    how can it just exit instead?
    change

    while 1

    to

    while i<20


    This is assuming that 20 is your last image...

  9. #19
    PSP Coder deniska's Avatar
    Join Date
    Jul 2005
    Posts
    1,557
    Rep Power
    80

    Default

    FYI,
    I found a small bug that would drain the memory on image loads.. version 0.6 has a fix for it...

  10. #20
    DCEmu Newbie
    Join Date
    May 2008
    Posts
    15
    Rep Power
    0

    Default

    ok thanks and nice to see updates coming out so fast

Page 2 of 4 FirstFirst 1234 LastLast

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •