From ec8d46ae61fcccf34cf281ee0606584c620c5522 Mon Sep 17 00:00:00 2001 From: TC1995 Date: Thu, 18 Feb 2021 19:04:46 +0100 Subject: [PATCH] Fix memory size on the ht216 pb410a card. --- src/video/vid_ht216.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/video/vid_ht216.c b/src/video/vid_ht216.c index d2c380527..59229a4eb 100644 --- a/src/video/vid_ht216.c +++ b/src/video/vid_ht216.c @@ -1303,7 +1303,7 @@ v7_vga_1024i_init(const device_t *info) static void * ht216_pb410a_init(const device_t *info) { - ht216_t *ht216 = ht216_init(info, device_get_config_int("memory") << 10, 0); + ht216_t *ht216 = ht216_init(info, 1 << 20, 0); return ht216; }