CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 4 of 4

Thread: Allegro Anyone?

  1. #1
    Join Date
    Sep 2002
    Posts
    2

    Question Allegro Anyone?

    Does anyone here program with allegro? I used to post at the Allegro.cc posts, but they kicked me out cuz the mod was a...... less desirable person

  2. #2
    Do you have an actual question regarding Allegro?

  3. #3
    Join Date
    Aug 2002
    Location
    Denver, CO
    Posts
    6
    I think that he was just trying to find out if anyone here on the CodeGuru forums knew how to program allegro. It seems perfectly alright to me (maybe more appropriate for the General Forums), as CodeGuru doesn't exactly have a section on Allegro =).

  4. #4
    Join Date
    Sep 2002
    Posts
    2

    Thumbs up

    Yes, I did have a particular question about Allegro programming . Im making a GUI program, and in this program I have a function that is SUPPOSED to change the backdrop (image) of the screen. For some reason I always get a GPF when it runs. Here is my code.
    Code:
    int change_bak(int msg, DIALOG *d, int c)
    {
        char *bgname;                //the backgrounds name (for loading new ones)
        if(msg == MSG_LRELEASE)
        {
            int oo7=file_select_ex("Select backdrop...", bgname,"PCX;BMP;/-h-s", 550, 600, 200);
            if(oo7 == 0)
            {
                //do nothing, they pressed cancel
            }
            else
            {
                clear(bgh);
                clear(screen);
                //destroy_bitmap(bgh);
                //bgh = load_bitmap((const char *)bgname, NULL);
                scare_mouse();
                stretch_blit(bgh, screen, 0, 0, bgh->w, bgh->h, 0, 0, SCREEN_W, SCREEN_H);
                unscare_mouse();
            }    
        }
        
        return(d_button_proc(msg, d, c));
    }
    P.S. Darance seems like a nice guy, have we met before
    [edit] does this mean that no one knows [/edit]
    Last edited by Magus Will; September 1st, 2002 at 07:08 PM.

Posting Permissions

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





Click Here to Expand Forum to Full Width

Featured