Changeset d6cc453 in mainline for console/console.c


Ignore:
Timestamp:
2006-06-02T19:22:08Z (19 years ago)
Author:
Ondrej Palkovsky <ondrap@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
53daee3
Parents:
e87e18f
Message:

Made tetris compile and somewhat run.
Slightly better console.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • console/console.c

    re87e18f rd6cc453  
    285285                case CONSOLE_PUTCHAR:
    286286                        write_char(consnum, IPC_GET_ARG1(call));
     287                        gcons_notify_char(consnum);
    287288                        break;
    288289                case CONSOLE_CLEAR:
     
    297298                case CONSOLE_GOTO:
    298299                       
    299                         screenbuffer_goto(&(connections[consnum].screenbuffer), IPC_GET_ARG1(call), IPC_GET_ARG2(call));
     300                        screenbuffer_goto(&(connections[consnum].screenbuffer), IPC_GET_ARG2(call), IPC_GET_ARG1(call));
    300301                       
    301302                        break;
    302303
    303304                case CONSOLE_GETSIZE:
    304                         arg1 = fb_info.cols;
    305                         arg2 = fb_info.rows;
     305                        arg1 = fb_info.rows;
     306                        arg2 = fb_info.cols;
    306307                        break;
    307308                case CONSOLE_FLUSH:
Note: See TracChangeset for help on using the changeset viewer.