Skip to content

Commit

Permalink
Merge pull request #613 from devnexen/fix_590
Browse files Browse the repository at this point in the history
Fix #590
  • Loading branch information
stalkerg authored Jan 18, 2024
2 parents 18a38ba + 5397d94 commit 22accbb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/actint/ascript.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -581,7 +581,7 @@ aciLocationShutterInfo* locSh;
aciWorldMap* wMap;
aciWorldInfo* wData;

std::unique_ptr<actIntDispatcher> aScrDisp;
actIntDispatcher* aScrDisp;

int aciCurCredits03 = 0;

Expand All @@ -605,7 +605,7 @@ void aParseScript(const char* fname,const char* bname)
invMatrix* mtx;
invItem* itm;

aScrDisp.reset(new actIntDispatcher);
aScrDisp = new actIntDispatcher;
aciML_D = new aciML_Dispatcher;

#ifndef _BINARY_SCRIPT_
Expand Down

0 comments on commit 22accbb

Please sign in to comment.