1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 04:07:44 +00:00

LibVT: Rename escape$f to HVP (Horizontal and Vertical Position)

This commit is contained in:
Linus Groh 2020-01-26 13:52:19 +00:00 committed by Andreas Kling
parent 2edd8e37ae
commit be57b81336
2 changed files with 3 additions and 3 deletions

View file

@ -292,7 +292,7 @@ void Terminal::CUP(const ParamVector& params)
set_cursor(row - 1, col - 1);
}
void Terminal::escape$f(const ParamVector& params)
void Terminal::HVP(const ParamVector& params)
{
// HVP Horizontal and Vertical Position
unsigned row = 1;
@ -688,7 +688,7 @@ void Terminal::execute_escape_sequence(u8 final)
DA(params);
break;
case 'f':
escape$f(params);
HVP(params);
break;
default:
dbgprintf("Terminal::execute_escape_sequence: Unhandled final '%c'\n", final);