diff --git a/Emulators/VT100.mm b/Emulators/VT100.mm index 05e2c8e..dff31cc 100644 --- a/Emulators/VT100.mm +++ b/Emulators/VT100.mm @@ -470,7 +470,7 @@ enum { { // 0 = line // 1 = column - screen->setCursor(std::max(_parms[1], 1) - 1, std::max(_parms[1],1) - 1); + screen->setCursor(std::max(_parms[1], 1) - 1, std::max(_parms[0],1) - 1); } else screen->setCursor(0, 0); _state = StateText;