Prepare support for wide display on HiRes+ device

svn-id: r8001
This commit is contained in:
Chris Apers 2003-05-26 12:59:16 +00:00
parent ad874a4fd5
commit bf565613b2
2 changed files with 3 additions and 1 deletions

View File

@ -103,6 +103,7 @@ static const struct GraphicsMode gfx_modes[] = {
#else
{"flipping", "Page Flipping", GFX_FLIPPING},
{"dbuffer", "Double Buffer", GFX_DOUBLEBUFFER},
{"wide", "Wide (HiRes+ only)", GFX_WIDE},
#endif
{0, 0, 0}
};

View File

@ -55,7 +55,8 @@ enum {
GFX_DOTMATRIX = 9,
GFX_FLIPPING = 100, // Palmos
GFX_DOUBLEBUFFER = 101 // Palmos
GFX_DOUBLEBUFFER = 101, // Palmos
GFX_WIDE = 102 // palmos
};