From 08b858a8cb2a756108b14e31528873080807a8dd Mon Sep 17 00:00:00 2001 From: d0k3 Date: Thu, 16 Feb 2017 12:03:14 +0100 Subject: [PATCH] Increase TMD_MAX_CONTENTS --- source/game/tmd.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/game/tmd.h b/source/game/tmd.h index 207c13c..125e7c7 100644 --- a/source/game/tmd.h +++ b/source/game/tmd.h @@ -2,7 +2,7 @@ #include "common.h" -#define TMD_MAX_CONTENTS (100+1) // theme CIAs contain maximum 100 themes + 1 index content +#define TMD_MAX_CONTENTS 256 // theme CIAs contain maximum 100 themes + 1 index content #define TMD_SIZE_MIN sizeof(TitleMetaData) #define TMD_SIZE_MAX (sizeof(TitleMetaData) + (TMD_MAX_CONTENTS*sizeof(TmdContentChunk)))