From e36732321dd4f9a303b9dc4cfa61b55950199854 Mon Sep 17 00:00:00 2001 From: Vicki Pfau Date: Mon, 30 Jan 2017 17:49:14 -0800 Subject: [PATCH] DS Core: Make screen double height --- src/ds/core.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ds/core.c b/src/ds/core.c index faabf676f..5fb6e0ce7 100644 --- a/src/ds/core.c +++ b/src/ds/core.c @@ -106,7 +106,7 @@ static void _DSCoreLoadConfig(struct mCore* core, const struct mCoreConfig* conf static void _DSCoreDesiredVideoDimensions(struct mCore* core, unsigned* width, unsigned* height) { UNUSED(core); *width = DS_VIDEO_HORIZONTAL_PIXELS; - *height = DS_VIDEO_VERTICAL_PIXELS; + *height = DS_VIDEO_VERTICAL_PIXELS * 2; } static void _DSCoreSetVideoBuffer(struct mCore* core, color_t* buffer, size_t stride) {