From a6ca085a35fc2b1739fc8d1e6cf064b45279e8ee Mon Sep 17 00:00:00 2001 From: Felix Arends Date: Sat, 27 Apr 2002 15:20:53 +0000 Subject: removed unneeded code from lcd.c and renamed it do lcd-win32.c updated modified constants (LCD_WIDTH, LCD_HEIGHT) git-svn-id: svn://svn.rockbox.org/rockbox/trunk@261 a1c6a512-1295-4272-9138-f99709370657 --- uisimulator/win32/lcd-win32.h | 23 +++++++++++++++++++++-- 1 file changed, 21 insertions(+), 2 deletions(-) (limited to 'uisimulator/win32/lcd-win32.h') diff --git a/uisimulator/win32/lcd-win32.h b/uisimulator/win32/lcd-win32.h index 5049c2d70c..e4b1e3bd8e 100644 --- a/uisimulator/win32/lcd-win32.h +++ b/uisimulator/win32/lcd-win32.h @@ -1,3 +1,22 @@ +/*************************************************************************** + * __________ __ ___. + * Open \______ \ ____ ____ | | _\_ |__ _______ ___ + * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ / + * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < < + * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \ + * \/ \/ \/ \/ \/ + * $Id$ + * + * Copyright (C) 2002 by Felix Arends + * + * All files in this archive are subject to the GNU General Public License. + * See the file COPYING in the source tree root for full license agreement. + * + * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY + * KIND, either express or implied. + * + ****************************************************************************/ + #ifndef __LCDWIN32_H__ #define __LCDWIN32_H__ @@ -13,14 +32,14 @@ typedef struct #ifdef HAVE_LCD_BITMAP -extern unsigned char display[DISP_X][DISP_Y/8]; // the display +extern unsigned char display[LCD_WIDTH][LCD_HEIGHT/8]; // the display #else #define DISP_X 112 #define DISP_Y 64 #endif -extern char bitmap[DISP_Y][DISP_X]; // the ui display +extern char bitmap[LCD_WIDTH][LCD_HEIGHT]; // the ui display extern BITMAPINFO2 bmi; // bitmap information -- cgit v1.2.3