~ubuntu-branches/ubuntu/maverick/vice/maverick

« back to all changes in this revision

Viewing changes to src/arch/msdos/kbd.c

  • Committer: Bazaar Package Importer
  • Author(s): Zed Pobre
  • Date: 2005-02-01 11:30:26 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20050201113026-3eyakzsmmheclvjg
Tags: 1.16-1
* New upstream version
* Fixes crash on 64-bit architectures (closes: #287640)
* x128 working again (closes: #286767)
* Works fine with /dev/dsp in use (not in the main changelog, but tested
  on my local machine as working).  Presumably, this also takes care of
  the issue with dsp being held.  I'm not sure if this is because I'm
  testing it on a 2.6 kernel now -- if you are still having problems
  with /dev/dsp, please reopen the bugs. (closes: #152952, #207942)
* Don't kill Makefile.in on clean

Show diffs side-by-side

added added

removed removed

Lines of Context:
181
181
                freeze_function();
182
182
            break;
183
183
          case KCMD_FLIP_NEXT:
184
 
            flip_attach_head(8, 1);
 
184
            fliplist_attach_head(8, 1);
185
185
            break;
186
186
          case KCMD_FLIP_PREVIOUS:
187
 
            flip_attach_head(8, 0);
 
187
            fliplist_attach_head(8, 0);
188
188
            break;
189
189
          case KCMD_FLIP_ADD:
190
 
            flip_add_image(8);
 
190
            fliplist_add_image(8);
191
191
            break;
192
192
          case KCMD_FLIP_REMOVE:
193
 
            flip_remove(-1, NULL);
 
193
            fliplist_remove(-1, NULL);
194
194
            break;
195
195
          case KCMD_TOGGLE_WARP:
196
196
            resources_toggle("WarpMode", NULL);