From 1f523b62c14ccf15c416de1adb2b7c40ee80901a Mon Sep 17 00:00:00 2001 From: Antonis Makropoulos Date: Sun, 1 Mar 2026 21:40:58 +0200 Subject: [PATCH 1/2] fix error on empty architectures --- Runtime/LlamaLib/LlamaLib.cs | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/Runtime/LlamaLib/LlamaLib.cs b/Runtime/LlamaLib/LlamaLib.cs index 5baa7bca..778d256a 100644 --- a/Runtime/LlamaLib/LlamaLib.cs +++ b/Runtime/LlamaLib/LlamaLib.cs @@ -751,10 +751,7 @@ private string GetRuntimeLibraryPath() private string[] GetAvailableArchitectures(bool gpu) { string architecturesString = Marshal.PtrToStringAnsi(Available_Architectures(gpu)); - if (string.IsNullOrEmpty(architecturesString)) - { - throw new InvalidOperationException("No architectures available for the specified GPU setting."); - } + if (string.IsNullOrEmpty(architecturesString)) return new string[0]; string[] librariesOptions = architecturesString.Split(','); List libraries = new List(); From 1488466271d2290888e80e96b1af2d0691c3baa0 Mon Sep 17 00:00:00 2001 From: Antonis Makropoulos Date: Sun, 1 Mar 2026 22:29:17 +0200 Subject: [PATCH 2/2] add False Flame game --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index a70b61d2..22de4b4f 100644 --- a/README.md +++ b/README.md @@ -81,6 +81,7 @@ For business inquiries you can reach out at hello@undream.ai. - [HeyWaifu](https://squirclegames.itch.io/hey-waifu-ai) - [Love and Lie](https://store.steampowered.com/app/3886140/Love_and_Lie/) - [Psycho Simulator](https://store.steampowered.com/app/1244620/Psycho_Simulator/) +- [False Flame](https://store.steampowered.com/app/4427250/False_Flame/) Contact hello@undream.ai to add your project!