Skip to content

Commit

Permalink
BLADERUNNER: Resolve argument shadowing
Browse files Browse the repository at this point in the history
  • Loading branch information
DrMcCoy authored and sev- committed Sep 29, 2016
1 parent 2189721 commit 5b8df8c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions engines/bladerunner/script/script.h
Expand Up @@ -69,8 +69,8 @@ class ScriptBase {
#define DECLARE_SCRIPT(name) \
class Script##name : public ScriptBase { \
public: \
Script##name(BladeRunnerEngine *_vm) \
: ScriptBase(_vm) \
Script##name(BladeRunnerEngine *vm) \
: ScriptBase(vm) \
{} \
void InitializeScene(); \
void SceneLoaded(); \
Expand Down

0 comments on commit 5b8df8c

Please sign in to comment.