diff options
author | Reinhard Tartler <siretart@tauware.de> | 2011-08-26 09:24:25 +0200 |
---|---|---|
committer | Reinhard Tartler <siretart@tauware.de> | 2011-08-26 09:24:25 +0200 |
commit | 7c0fb2e980af93923f2071e1af087010962e06bd (patch) | |
tree | 622e5a8f57901f9f6dbccec081766c29cffbf08e /drv_st2205.c | |
parent | 181cec4348da40331b3e8ab365732c025ec149b2 (diff) | |
download | lcd4linux-7c0fb2e980af93923f2071e1af087010962e06bd.tar.gz |
Import upstream version 0.11.0~svn1158
Diffstat (limited to 'drv_st2205.c')
-rw-r--r-- | drv_st2205.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drv_st2205.c b/drv_st2205.c index fbc6da1..ac758e0 100644 --- a/drv_st2205.c +++ b/drv_st2205.c @@ -1,4 +1,4 @@ -/* $Id: drv_st2205.c 980 2009-01-28 21:18:52Z michux $ +/* $Id: drv_st2205.c 1147 2011-07-27 02:20:51Z michael $ * $URL: https://ssl.bulix.org/svn/lcd4linux/trunk/drv_st2205.c $ * * ST2205U-driven hacked picture frame driver. @@ -142,8 +142,8 @@ static int drv_st2205_start2(const char *section) fb = malloc(h->height * h->width * 3); /* set width/height from st2205 firmware specs */ - DROWS = h->width; - DCOLS = h->height; + DROWS = h->height; + DCOLS = h->width; return 0; } |