From 9b89ede9c47830ed46a88bf2353e0b52df56bd3f Mon Sep 17 00:00:00 2001 From: JeLuF Date: Thu, 3 Nov 2022 00:28:47 +0100 Subject: [PATCH] Only require 8GB instead of 80GB 80GB was a leftover from the code test --- NSIS/sdui.nsi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/NSIS/sdui.nsi b/NSIS/sdui.nsi index b7fa3898..fbee7e08 100644 --- a/NSIS/sdui.nsi +++ b/NSIS/sdui.nsi @@ -232,7 +232,7 @@ Function .onInit System::Int64Op $4 / 1048576 Pop $4 - ${If} $4 < "80000" + ${If} $4 < "8000" MessageBox MB_OK|MB_ICONEXCLAMATION "Warning!$\n$\nYour system has less than 8GB of memory (RAM).$\n$\n\ You can still try to install Stable Diffusion UI,$\nbut it might have problems to start, or run$\nvery slowly." ${EndIf}