diff options
| author | Hristo Kovachev <bger@rockbox.org> | 2006-04-03 08:51:08 +0000 |
|---|---|---|
| committer | Hristo Kovachev <bger@rockbox.org> | 2006-04-03 08:51:08 +0000 |
| commit | 38deb8f13a9896f2d6eb884c6a8bbc9b10001255 (patch) | |
| tree | 6e0b2629bec1f6ebd83671230652da304dcf0ff8 /apps/plugins/doom/st_stuff.c | |
| parent | defbc69b2b2a576d06e718deef73aa41b5376390 (diff) | |
| download | rockbox-38deb8f13a9896f2d6eb884c6a8bbc9b10001255.zip rockbox-38deb8f13a9896f2d6eb884c6a8bbc9b10001255.tar.gz rockbox-38deb8f13a9896f2d6eb884c6a8bbc9b10001255.tar.bz2 rockbox-38deb8f13a9896f2d6eb884c6a8bbc9b10001255.tar.xz | |
Patch #4864 by Jonathan Gordon: text editor plugin, with some changes by me.
Also correct a var clash between the rockbox's gui api and doom plugin
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@9451 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/doom/st_stuff.c')
| -rw-r--r-- | apps/plugins/doom/st_stuff.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/plugins/doom/st_stuff.c b/apps/plugins/doom/st_stuff.c index 5d9244d..feae89a 100644 --- a/apps/plugins/doom/st_stuff.c +++ b/apps/plugins/doom/st_stuff.c @@ -1148,6 +1148,6 @@ void ST_Init(void) veryfirsttime = 0; ST_loadData(); // proff 08/18/98: Changed for high-res - screens[4] = Z_Malloc(SCREENWIDTH*(ST_SCALED_HEIGHT+1), PU_STATIC, 0); - // screens[4] = Z_Malloc(ST_WIDTH*ST_HEIGHT, PU_STATIC, 0); + d_screens[4] = Z_Malloc(SCREENWIDTH*(ST_SCALED_HEIGHT+1), PU_STATIC, 0); + // d_screens[4] = Z_Malloc(ST_WIDTH*ST_HEIGHT, PU_STATIC, 0); } |