fixed upscale default for RPI

Former-commit-id: a0c3672d310519229fbe15dff2e55fa0dcbc81cc
Former-commit-id: 36042c20daf79197a3d718a9b5d0db58d124485f
This commit is contained in:
Nathan 2017-10-05 22:32:36 -05:00
parent 96f0457439
commit 6663e5b21f
2 changed files with 3 additions and 1 deletions

View file

@ -57,6 +57,8 @@ void init(char *title)
Modes.screen_width = vInfo->current_w; Modes.screen_width = vInfo->current_w;
Modes.screen_height = vInfo->current_h; Modes.screen_height = vInfo->current_h;
Modes.screen_depth = vInfo->vfmt->BitsPerPixel; Modes.screen_depth = vInfo->vfmt->BitsPerPixel;
Modes.screen_upscale = 1;
#endif #endif

View file

@ -40,7 +40,7 @@ void updateStatus() {
maxDist = d; maxDist = d;
} }
if(d < 100.0) { if(d < 4.0) {
Status.closeCall = a; Status.closeCall = a;
} }