all repos — mgba @ e36732321dd4f9a303b9dc4cfa61b55950199854

mGBA Game Boy Advance Emulator

DS Core: Make screen double height
Vicki Pfau vi@endrift.com
Mon, 30 Jan 2017 17:49:14 -0800
commit

e36732321dd4f9a303b9dc4cfa61b55950199854

parent

4009b7b66486e55053452896210e8703387fb8a7

1 files changed, 1 insertions(+), 1 deletions(-)

jump to
M src/ds/core.csrc/ds/core.c

@@ -106,7 +106,7 @@

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) {