mirror of
https://github.com/koreader/koreader.git
synced 2025-08-10 00:52:38 +00:00
adapt refresh type code in fillMxcfbUpdateData
just to keep consistent with the old refresh type, i.e. 0 for full refresh and 1 for partial
This commit is contained in:
2
einkfb.c
2
einkfb.c
@@ -97,7 +97,7 @@ inline void fillUpdateAreaT(update_area_t *myarea, FBInfo *fb, lua_State *L) {
|
||||
}
|
||||
|
||||
inline void fillMxcfbUpdateData(mxcfb_update_data *myarea, FBInfo *fb, lua_State *L) {
|
||||
myarea->update_mode = luaL_optint(L, 2, 0);
|
||||
myarea->update_mode = ((luaL_optint(L, 2, 0) == 0)? 1:0);
|
||||
myarea->update_region.top = luaL_optint(L, 3, 0);
|
||||
myarea->update_region.left = luaL_optint(L, 4, 0);
|
||||
myarea->update_region.width = luaL_optint(L, 5, fb->vinfo.xres);
|
||||
|
||||
Reference in New Issue
Block a user