[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [MiNT] XaAES



Am 10.07.2009, 14:43 Uhr, schrieb <p.slegg@scubadivers.co.uk>:

If anyone has time could they have a peek at the keyboard routines and
see why Ctrl-Insert doesn't work in Texel please ?


This seems to come from MiNT. It thinks its Alt-insert when its shift-insert.

See keyboard.c,458


    case INSERT:
    {
      if (make)
      {
        if (shift & MM_ESHIFT)
addroottimeout(ROOT_TIMEOUT, (void _cdecl (*)(PROC *))mouse_dclick, 1);
        else
addroottimeout(ROOT_TIMEOUT, (void _cdecl (*)(PROC *))mouse_lclick, 1);

        kbdclick(scan);
      }

      return -1;
    }

I'm pretty shure it shuld read


        if (shift & MM_ALTERNATE)


Or whatever ...

-Helmut