Changeset 520 for trunk/src/curses


Ignore:
Timestamp:
10/03/16 17:45:46 (9 years ago)
Author:
epyon
Message:
  • ecs updates
  • animation updates
  • ragdoll manager
  • lua has own random engine
  • several minor fixes
  • particle engine/particle group
  • shitload of other stuff
  • bullet world
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/curses/curses_terminal.cc

    r514 r520  
    131131        }
    132132
     133        // if result is a typable char from the 0..9 range
     134        if ( result >= 0x108 && result <= 0x108 + 12 )
     135        {
     136                kevent.key.code = static_cast<nv::key_code>( nv::KEY_F1 + result - 0x108 - 1 );
     137        }
     138
    133139        // other recognized codes
    134140        switch ( result )
Note: See TracChangeset for help on using the changeset viewer.