summaryrefslogtreecommitdiff
path: root/apps/viewer.c
diff options
context:
space:
mode:
authorLinus Nielsen Feltzing <linus@haxx.se>2002-10-16 13:17:26 +0000
committerLinus Nielsen Feltzing <linus@haxx.se>2002-10-16 13:17:26 +0000
commite45c069d6993137af80fac30ac1b701b3f669d91 (patch)
tree71020ac50afb866754d9f0e9d7dfbf0a2e35afd0 /apps/viewer.c
parent7ec35e782803708cc69871fd9495ea80c846ff68 (diff)
Removed all traces of the repeat and release masks
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@2684 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/viewer.c')
-rw-r--r--apps/viewer.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/apps/viewer.c b/apps/viewer.c
index a588852b4c..f653866626 100644
--- a/apps/viewer.c
+++ b/apps/viewer.c
@@ -334,15 +334,12 @@ bool viewer_run(char* file)
int button;
int col = 0;
int ok;
- int oldmask;
#ifdef HAVE_LCD_BITMAP
/* no margins */
lcd_setmargins(0, 0);
#endif
- oldmask = button_set_release(~0);
-
ok = viewer_init(file);
if (!ok) {
lcd_clear_display();
@@ -431,7 +428,5 @@ bool viewer_run(char* file)
return true;
}
}
- button_set_release(oldmask);
return false;
}
-