mirror of
https://github.com/libretro/scummvm.git
synced 2025-02-02 08:55:45 +00:00
SCI: Remove unneeded copy
This commit is contained in:
parent
948e448738
commit
9f2fff4f66
@ -780,7 +780,7 @@ SciWorkaroundSolution trackOriginAndFindWorkaround(int index, const SciWorkaroun
|
||||
Common::List<ExecStack>::const_iterator callIterator = state->_executionStack.end();
|
||||
while (callIterator != state->_executionStack.begin()) {
|
||||
callIterator--;
|
||||
ExecStack loopCall = *callIterator;
|
||||
const ExecStack &loopCall = *callIterator;
|
||||
if ((loopCall.debugSelector != -1) || (loopCall.debugExportId != -1)) {
|
||||
lastCall->debugSelector = loopCall.debugSelector;
|
||||
lastCall->debugExportId = loopCall.debugExportId;
|
||||
|
Loading…
x
Reference in New Issue
Block a user