Replace a missed _tcslen() with strlen()

This commit is contained in:
tomcw 2025-02-08 11:11:31 +00:00
parent 168e868677
commit 648e5cca25

View File

@ -790,7 +790,7 @@ Update_t CmdSymbolsLoad (int nArgs)
for ( int iLine = 0; iLine < nLine; iLine++ )
{
script.GetLine( iLine, g_pConsoleInput, CONSOLE_WIDTH-2 );
g_nConsoleInputChars = _tcslen( g_pConsoleInput );
g_nConsoleInputChars = strlen( g_pConsoleInput );
bUpdateDisplay |= DebuggerProcessCommand( false );
}
}