summaryrefslogtreecommitdiff
path: root/apps/plugins/zxbox/spect.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/zxbox/spect.c')
-rw-r--r--apps/plugins/zxbox/spect.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/apps/plugins/zxbox/spect.c b/apps/plugins/zxbox/spect.c
index 8e9291f704..47715fa9fd 100644
--- a/apps/plugins/zxbox/spect.c
+++ b/apps/plugins/zxbox/spect.c
@@ -60,11 +60,15 @@ int SPNM(halfframe)(int firsttick, int numlines)
60 /* Check if updating screen */ 60 /* Check if updating screen */
61 61
62 if(SPNM(updating)) { 62 if(SPNM(updating)) {
63#if LCD_WIDTH == 320 && ( LCD_HEIGHT == 240 || LCD_HEIGHT == 200 )
63 border = SPNM(lastborder); 64 border = SPNM(lastborder);
64 if((feport & 0x07) != border) { 65 if((feport & 0x07) != border) {
65 SPNM(border_update) = 2; 66 SPNM(border_update) = 2;
66 SPNM(lastborder) = feport & 0x07; 67 SPNM(lastborder) = feport & 0x07;
67 } 68 }
69#else
70 SPNM(border_update) = 0;
71#endif
68 scrptr = update_screen_line(scrptr, SPNM(coli)[scline], DANM(next_scri), 72 scrptr = update_screen_line(scrptr, SPNM(coli)[scline], DANM(next_scri),
69 border, &cmark); 73 border, &cmark);
70 74