From 6af0cfdac008c6d5b5ed06f33cbb2162a1cbaf83 Mon Sep 17 00:00:00 2001 From: Maurus Cuelenaere Date: Sun, 24 May 2009 02:28:03 +0000 Subject: Lua: /me should learn about C arrays.. :/ git-svn-id: svn://svn.rockbox.org/rockbox/trunk@21065 a1c6a512-1295-4272-9138-f99709370657 --- apps/plugins/lua/rocklib.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/plugins/lua/rocklib.c b/apps/plugins/lua/rocklib.c index 749acc3831..692106e24d 100644 --- a/apps/plugins/lua/rocklib.c +++ b/apps/plugins/lua/rocklib.c @@ -118,7 +118,7 @@ static fb_data* rli_element(lua_State *L) "index out of range"); /* return element address */ - return &a->data[a->height * (y - 1) + (x - 1)]; + return &a->data[a->width * (y - 1) + (x - 1)]; } static int rli_set(lua_State *L) -- cgit v1.2.3