- Timestamp:
- Dec 2, 2015, 11:22:03 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/cpp11_v2/src/libraries/core/input/Button.cc
r10821 r10916 196 196 197 197 // add command to the buffer if not yet existing 198 for ( auto & elem: *paramCommandBuffer_)199 { 200 if ( elem->evaluation_.getConsoleCommand()198 for (BufferedParamCommand* command : *paramCommandBuffer_) 199 { 200 if (command->evaluation_.getConsoleCommand() 201 201 == eval.getConsoleCommand()) 202 202 { 203 203 // already in list 204 cmd->paramCommand_ = elem;204 cmd->paramCommand_ = command; 205 205 break; 206 206 }
Note: See TracChangeset
for help on using the changeset viewer.