Quote:
Originally Posted by Kobo1
but when I go to start koreader it seems like it want to work but just goes to a screen with some files(can't remember) but it does not show my book or pdf files at all.
|
You are seeing directories and files (directories have "/" at the end). Poke the names of directories in order to navigate through the directory system until you find your books. In case you get lost, remember that what you know as the root directory of the user partition is actually /mnt/onboard/.
If poking on file or directory names does not yield the wished result, and you have also problems poking the menu items, open the file ...koreader\frontend\device\input.lu, search for
Code:
-- For single-touch events (ABS.code).
local ABS_X = 00
local ABS_Y = 01
and exchange the values of ABS_X and ABS_Y:
Code:
Code:
-- For single-touch events (ABS.code).
local ABS_X = 01
local ABS_Y = 00
This is necessary on some Kobo Touch devices.