Fixes for Linux build

This commit is contained in:
Aaron Culliney 2019-06-27 16:22:05 -07:00
parent 7eacfb4564
commit 45cc3332fb
2 changed files with 2 additions and 2 deletions

View File

@ -15,7 +15,7 @@ noinst_HEADERS = src/common.h src/cpu.h src/disk.h src/glue.h src/vm.h \
\
src/x86/glue-prologue.h \
src/x86/glue-offsets.h src/x86/glue-offsets32.h src/x86/glue-offsets64.h \
src/meta/debug.h src/meta/log.h src/meta/trace.h \
src/meta/debug.h src/meta/log.h src/meta/systrace.h \
\
src/audio/alhelpers.h src/audio/AY8910.h src/audio/mockingboard.h \
src/audio/peripherals.h src/audio/soundcore.h src/audio/speaker.h \

View File

@ -148,7 +148,7 @@ void gldriver_on_key_down(unsigned char key, int x, int y) {
void gldriver_on_key_up(unsigned char key, int x, int y) {
_capslock_hackaround();
//LOG("onKeyUp %02x(%d)'%c'", key, key, key);
keys_handleKnput(key, /*is_pressed:*/false, /*is_ascii:*/true);
keys_handleInput(key, /*is_pressed:*/false, /*is_ascii:*/true);
}
void gldriver_on_key_special_down(int key, int x, int y) {