diff options
author | inmarket <andrewh@inmarket.com.au> | 2013-12-30 09:05:29 +1000 |
---|---|---|
committer | inmarket <andrewh@inmarket.com.au> | 2013-12-30 09:05:29 +1000 |
commit | d18325e5768101fd2b85f7767b6259dec89725af (patch) | |
tree | e66bffb91069a1307cdb4c83ba4f646179032adf /drivers | |
parent | 1f730d474cd8dea4ef3402423e122c4b17ae8723 (diff) | |
download | uGFX-d18325e5768101fd2b85f7767b6259dec89725af.tar.gz uGFX-d18325e5768101fd2b85f7767b6259dec89725af.tar.bz2 uGFX-d18325e5768101fd2b85f7767b6259dec89725af.zip |
Remove variable name conflict with doom demo
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/multiple/X/gdisp_lld_X.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/multiple/X/gdisp_lld_X.c b/drivers/multiple/X/gdisp_lld_X.c index ad455120..dcc76d09 100644 --- a/drivers/multiple/X/gdisp_lld_X.c +++ b/drivers/multiple/X/gdisp_lld_X.c @@ -56,8 +56,8 @@ static Colormap cmap; static XVisualInfo vis; static XContext cxt; #if GINPUT_NEED_MOUSE - coord_t mousex, mousey; - uint16_t mousebuttons; + static coord_t mousex, mousey; + static uint16_t mousebuttons; #endif typedef struct xPriv { |