This commit is contained in:
Isaac Connor 2021-02-02 17:31:42 -05:00
parent 0958768ce5
commit 09d8dbb460
1 changed files with 1 additions and 1 deletions

View File

@ -174,7 +174,7 @@ void MonitorStream::processCommand(const CmdMsg *msg) {
case CMD_ZOOMIN : case CMD_ZOOMIN :
x = ((unsigned char)msg->msg_data[1]<<8)|(unsigned char)msg->msg_data[2]; x = ((unsigned char)msg->msg_data[1]<<8)|(unsigned char)msg->msg_data[2];
y = ((unsigned char)msg->msg_data[3]<<8)|(unsigned char)msg->msg_data[4]; y = ((unsigned char)msg->msg_data[3]<<8)|(unsigned char)msg->msg_data[4];
Debug( 1, "Got ZOOM IN command, to %d,%d", x, y ); Debug(1, "Got ZOOM IN command, to %d,%d", x, y);
switch ( zoom ) { switch ( zoom ) {
case 100: case 100:
zoom = 150; zoom = 150;