Results 1 to 3 of 3

Thread: Smart Graphics Error

  1. #1
    Join Date
    Nov 2011
    Posts
    1,589
    Mentioned
    9 Post(s)
    Quoted
    17 Post(s)

    Default Smart Graphics Error

    Code:
    Error: Exception: The Points you passed to DrawATPA exceed the bitmap's bounds at line 96
    Any Idea?
    Thanks
    Mat
    Also I sort the bitmap drawing and i still get it.



    ^^

  2. #2
    Join Date
    Dec 2011
    Location
    New York, USA
    Posts
    1,242
    Mentioned
    12 Post(s)
    Quoted
    193 Post(s)

    Default

    Post more code. Does this happen when a ATPA drawing overlaps the bitmap drawing?

  3. #3
    Join Date
    Feb 2011
    Location
    The Future.
    Posts
    5,600
    Mentioned
    396 Post(s)
    Quoted
    1598 Post(s)

    Default

    You're passing it bad points. It's telling you you're drawing out of bounds. If you don't care then try catch it:

    Simba Code:
    try
       Smart_DrawATPA(......);  //It'll draw whatever it can and throw on whatever it can't.
    except
    end;

    It uses a pointer for drawing to smart and I couldn't think of any other way to draw than use the standard simba functions. Inother words, it uses what's built in, nothing custom.
    I am Ggzz..
    Hackintosher

Thread Information

Users Browsing this Thread

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

Posting Permissions

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