From 3a294c4479b640093f764004fa35bc6c2aa8406c Mon Sep 17 00:00:00 2001 From: Francois Beutin Date: Thu, 6 Feb 2025 10:08:06 +0100 Subject: [PATCH] Increase number of sideloaded applications to 64 --- CHANGELOG.md | 5 +++++ src/launcher.c | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8b35fe12..0a45d73b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,11 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.13.2] 2025-02-06 + +### Changed +- Increase number of sideloaded applications to 64 + ## [0.13.1] 2025-01-28 ### Fixed diff --git a/src/launcher.c b/src/launcher.c index 2f7036a0..7d34fb64 100644 --- a/src/launcher.c +++ b/src/launcher.c @@ -20,7 +20,7 @@ #define LOAD_ADDR ((void *)0x40000000) #define LINK_RAM_ADDR (0xda7a0000) #define LOAD_RAM_ADDR (0x50000000) -#define MAX_APP 16 +#define MAX_APP 64 #define MAIN_APP_NAME "main" #ifndef GIT_REVISION