mirror of
https://github.com/open-goal/jak-project.git
synced 2024-11-23 06:09:57 +00:00
Typo fix LTT_MSG_INSEPCT (#2778)
Co-authored-by: ManDude <7569514+ManDude@users.noreply.github.com>
This commit is contained in:
parent
7570978c4b
commit
e3fb7c9467
@ -34,7 +34,7 @@ enum class ListenerMessageKind : u16 {
|
||||
*/
|
||||
enum ListenerToTargetMsgKind : u16 {
|
||||
LTT_MSG_POKE = 1, //! "Poke" the game and have it flush buffers
|
||||
LTT_MSG_INSEPCT = 5, //! Inspect an object
|
||||
LTT_MSG_INSPECT = 5, //! Inspect an object
|
||||
LTT_MSG_PRINT = 6, //! Print an object
|
||||
LTT_MSG_PRINT_SYMBOLS = 7, //! Print all symbols
|
||||
LTT_MSG_RESET = 8, //! Reset the game
|
||||
|
@ -59,7 +59,7 @@ void ProcessListenerMessage(Ptr<char> msg) {
|
||||
// just flush any pending stuff.
|
||||
ClearPending();
|
||||
break;
|
||||
case LTT_MSG_INSEPCT:
|
||||
case LTT_MSG_INSPECT:
|
||||
inspect_object(atoi(msg.c()));
|
||||
ClearPending();
|
||||
break;
|
||||
|
@ -73,7 +73,7 @@ void ProcessListenerMessage(Ptr<char> msg) {
|
||||
// just flush any pending stuff.
|
||||
ClearPending();
|
||||
break;
|
||||
case LTT_MSG_INSEPCT:
|
||||
case LTT_MSG_INSPECT:
|
||||
inspect_object(atoi(msg.c()));
|
||||
ClearPending();
|
||||
break;
|
||||
|
Loading…
Reference in New Issue
Block a user