Skip to content

Commit 8c6e614

Browse files
committed
Fix accidental paste in aosystem init
1 parent 0704876 commit 8c6e614

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

indra/newview/aosystem.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,7 @@ AOSystem::AOSystem()
207207
{
208208
// TODO: When we move to C++20 and when GCC and MSVC support it (at the time of writing, neither fully do), use __VA_OPT__ here instead.
209209
#define ANY_OVERRIDE(which, state, ...) mAOOverrides[STATE_AGENT_##state] = new which(ANIM_AGENT_##state, ##__VA_ARGS__)
210-
#define BASIC_OVERRIDE(state, ...) ANY_OVERRIDE(override_single, ##state, ##__VA_ARGS__)
210+
#define BASIC_OVERRIDE(state, ...) ANY_OVERRIDE(override_single, state, ##__VA_ARGS__)
211211
mAOOverrides[STATE_AGENT_IDLE] = new override_stand();
212212
BASIC_OVERRIDE(WALK, "Walk");
213213
BASIC_OVERRIDE(RUN, "Run");

0 commit comments

Comments
 (0)