Remove temp arrays in scripts.cc

This commit is contained in:
Vasilii Rogin 2023-04-20 09:30:15 +03:00
parent 1d3e61f346
commit 09da584210
2 changed files with 3 additions and 3 deletions

View File

@ -32,7 +32,6 @@
#include "scripts.h"
#include "selfrun.h"
#include "settings.h"
#include "sfall_arrays.h"
#include "sfall_config.h"
#include "svga.h"
#include "text_font.h"
@ -375,8 +374,6 @@ static void mainLoop()
renderPresent();
sharedFpsLimiter.throttle();
DeleteAllTempArrays();
}
scriptsDisable();

View File

@ -29,6 +29,7 @@
#include "proto.h"
#include "proto_instance.h"
#include "queue.h"
#include "sfall_arrays.h"
#include "sfall_config.h"
#include "stat.h"
#include "svga.h"
@ -1027,6 +1028,8 @@ int scriptsHandleRequests()
inventoryOpenStealing(gScriptsRequestedStealingBy, gScriptsRequestedStealingFrom);
}
DeleteAllTempArrays();
return 0;
}