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! 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();