1. 28 Jul, 2010 9 commits
  2. 24 Jul, 2010 1 commit
    • Sam Lantinga's avatar
      Couriersud to Sam · 4e19d730
      Sam Lantinga authored
      I have done some quick changes and at least the code compiles again. It
      also works with a number of the test executables with the DFB X11
      backend. I hope to find time to get SDLMAME to work with latest SDL1.3
      (i.e. rip out multi-keyboard, multi-mice & cursor support) next week to
      test it further.
      
      Regards,
      
      André
      4e19d730
  3. 23 Jul, 2010 1 commit
    • Sam Lantinga's avatar
      Daniel Wyatt to slouken · b0a24ac8
      Sam Lantinga authored
      I also found a bug in the non-printable character fix.
      In SDL_keyboard.c:SDL_SendKeyboardText:
          if (*text < ' ' || *text == 127) {
      needs to be:
          if ((unsigned char)*text < ' ' || *text == 127) {
      
      Otherwise bytes >= 128 will be considered non-printable.
      b0a24ac8
  4. 22 Jul, 2010 6 commits
  5. 21 Jul, 2010 9 commits
  6. 20 Jul, 2010 4 commits
  7. 19 Jul, 2010 4 commits
  8. 18 Jul, 2010 6 commits