Results 1 to 8 of 8

Thread: Following Bitmaps Not Freed

  1. #1
    Join Date
    Jul 2017
    Posts
    21
    Mentioned
    1 Post(s)
    Quoted
    3 Post(s)

    Default Following Bitmaps Not Freed

    Hey Guys,

    I seem to be having issues from time to time, and this one keeps coming up. Im trying to run a VERY simple line of code, just starting small and working my way up so I can learn the basics.

    program variable;
    //{$DEFINE SMART}
    {$i AeroLib/AeroLib.Simba}

    var pnt:tpoint;

    procedure Move

    begin
    pnt := [331,162];
    HumanMMouse(pnt, 5, 5);

    end;

    begin
    initAl;
    Move;

    end.


    After running this code a "Layer" popup comes up in simba and the following lines is highlighted in orange.

    Sync(@_InitLayer); // Must be on simba's mainthread so we receive messages

    In the debugger it says the following.

    The following bitmaps were not freed: [0, 1]

    Any idea why this keeps happening? Also, if you could tell me how to copy and paste simba code into a box so it looks as is that would be much appreciated, I understand it looks a lot cleaner than what I put up!

  2. #2
    Join Date
    Jul 2017
    Posts
    21
    Mentioned
    1 Post(s)
    Quoted
    3 Post(s)

    Default

    Figured it out! I put back the old version of aerolib and that seemed to fix it!

  3. #3
    Join Date
    Jan 2013
    Posts
    86
    Mentioned
    0 Post(s)
    Quoted
    25 Post(s)

    Default

    What version of Simba are you using just curious? I believe this is fixed if you update to the latest Simba version found here; https://github.com/MerlijnWajer/Simb...imba-1.2.0-rc6 (Which is required/recommended when using AeroLib 2.0)

  4. #4
    Join Date
    Jul 2017
    Posts
    21
    Mentioned
    1 Post(s)
    Quoted
    3 Post(s)

    Default

    Quote Originally Posted by deejaay View Post
    What version of Simba are you using just curious? I believe this is fixed if you update to the latest Simba version found here; https://github.com/MerlijnWajer/Simb...imba-1.2.0-rc6 (Which is required/recommended when using AeroLib 2.0)
    I downloaded simba here, I believe it is the most up-to-date version is it not?

    https://wizzup.org/simba/#download-ref

  5. #5
    Join Date
    Jan 2013
    Posts
    86
    Mentioned
    0 Post(s)
    Quoted
    25 Post(s)

    Default

    Quote Originally Posted by jokerface25 View Post
    I downloaded simba here, I believe it is the most up-to-date version is it not?

    https://wizzup.org/simba/#download-ref
    If I remember right that is the latest stable release, the one I linked I think is like a development/beta branch but Flight says it's required for AeroLib 2.0.

  6. #6
    Join Date
    Jul 2017
    Posts
    21
    Mentioned
    1 Post(s)
    Quoted
    3 Post(s)

    Default

    Quote Originally Posted by deejaay View Post
    If I remember right that is the latest stable release, the one I linked I think is like a development/beta branch but Flight says it's required for AeroLib 2.0.
    Oh alright, I'll give that a go then and try it out thanks!

  7. #7
    Join Date
    Jul 2017
    Posts
    21
    Mentioned
    1 Post(s)
    Quoted
    3 Post(s)

    Default

    Quote Originally Posted by deejaay View Post
    If I remember right that is the latest stable release, the one I linked I think is like a development/beta branch but Flight says it's required for AeroLib 2.0.
    So I tried downloading a bunch of the links and ran into some trouble with the walker :\

    The mouse pointer part of the script worked but the RSWalker feature wasnt working

    I'll probably just use the previous aerolib for now and stable version

  8. #8
    Join Date
    Jul 2017
    Posts
    21
    Mentioned
    1 Post(s)
    Quoted
    3 Post(s)

    Default

    Nevermind! I just forgot to add the RSWalker rar to the includes thanks a bunch!

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
  •