From 6894c116408bff47e1927a5fd99ecf0dec8e09bf Mon Sep 17 00:00:00 2001 From: chrox Date: Tue, 13 Jan 2015 00:18:59 +0800 Subject: [PATCH] fix typo --- frontend/device/input.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/device/input.lua b/frontend/device/input.lua index 1afec0ed3..7c7755b81 100644 --- a/frontend/device/input.lua +++ b/frontend/device/input.lua @@ -143,8 +143,8 @@ wrapper for FFI input open Note that we adhere to the "." syntax here for compatibility. TODO: clean up separation FFI/this --]] -function Input.open(device, kobo_events) - input.open(device, kobo_events and 1 or 0) +function Input.open(device, is_emu_events) + input.open(device, is_emu_events and 1 or 0) end --[[