Changeset 7eb8971 in buchla-emu for emu


Ignore:
Timestamp:
07/23/2017 10:48:38 AM (7 years ago)
Author:
Thomas Lopatic <thomas@…>
Branches:
master
Children:
2a75e87
Parents:
a23f3d9
Message:

Don't use Linux fix on OS X.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • emu/cpu.c

    ra23f3d9 r7eb8971  
    620620
    621621        bool run = true;
     622
     623#if defined EMU_LINUX
    622624        SDL_Scancode down = SDL_SCANCODE_UNKNOWN;
     625#endif
    623626
    624627        while (run) {
     
    631634
    632635                while (SDL_PollEvent(&ev) > 0) {
     636#if defined EMU_LINUX
    633637                        // Work around duplicate key-down events on Linux.
    634638
     
    643647                                down = SDL_SCANCODE_UNKNOWN;
    644648                        }
     649#endif
    645650
    646651                        if (ev.type == SDL_QUIT ||
Note: See TracChangeset for help on using the changeset viewer.