diff options
author | Colin Snover | 2017-01-17 21:26:16 -0600 |
---|---|---|
committer | Colin Snover | 2017-03-30 19:46:27 -0500 |
commit | bd7a62e99693e6df5c39efe09a8d28c57bfa7cd1 (patch) | |
tree | 6114f107e4b280a9f351adf5984caa12346607cb /engines | |
parent | 9a637ec324e8c0c7ff8fab28bc8105e8609e18ba (diff) | |
download | scummvm-rg350-bd7a62e99693e6df5c39efe09a8d28c57bfa7cd1.tar.gz scummvm-rg350-bd7a62e99693e6df5c39efe09a8d28c57bfa7cd1.tar.bz2 scummvm-rg350-bd7a62e99693e6df5c39efe09a8d28c57bfa7cd1.zip |
SCI: Fix typo in comment
Diffstat (limited to 'engines')
-rw-r--r-- | engines/sci/console.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/sci/console.cpp b/engines/sci/console.cpp index 5c7a9e6d4a..d0ac1bab3b 100644 --- a/engines/sci/console.cpp +++ b/engines/sci/console.cpp @@ -3657,7 +3657,7 @@ bool Console::cmdSend(int argc, const char **argv) { // everything after the selector name is passed as an argument to the send int send_argc = argc - 3; - // Create the data block for send_selecor() at the top of the stack: + // Create the data block for send_selector() at the top of the stack: // [selector_number][argument_counter][arguments...] StackPtr stackframe = _engine->_gamestate->_executionStack.back().sp; stackframe[0] = make_reg(0, selectorId); |