Skip to content

Commit

Permalink
GameControl::OnKeyRelease: promote area actor dump to lowercase shortcut
Browse files Browse the repository at this point in the history
initially it was on ctrl-M, but then got overwritten without care
  • Loading branch information
lynxlynxlynx committed Jan 11, 2014
1 parent 7557fe0 commit 89923da
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gemrb/core/GUI/GameControl.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -926,7 +926,7 @@ bool GameControl::OnKeyRelease(unsigned char Key, unsigned short Mod)
}
core->GetGame()->GetCurrentArea()->dump(false);
break;
case 'N': //prints a list of all the live actors in the area
case 'n': //prints a list of all the live actors in the area
core->GetGame()->GetCurrentArea()->dump(true);
break;
case 'o': //set up the origin for the pathfinder
Expand Down

0 comments on commit 89923da

Please sign in to comment.