From ed00d10e697f1e4e56412e93cdcc965f64ff867e Mon Sep 17 00:00:00 2001 From: Jeremy Katz Date: Fri, 23 Sep 2005 19:28:19 +0000 Subject: 2005-09-23 Jeremy Katz * loader2/urlinstall.c: Silly fix for constant. --- loader2/urlinstall.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'loader2') diff --git a/loader2/urlinstall.c b/loader2/urlinstall.c index b32f4e4a2..91cfa809a 100644 --- a/loader2/urlinstall.c +++ b/loader2/urlinstall.c @@ -122,7 +122,7 @@ static int loadUrlImages(struct iurlinfo * ui, int flags) { /* require 128MB for use of graphical stage 2 due to size of image */ if (FL_TEXT(flags) || totalMemory() < GUI_STAGE2_RAM) { stage2img = "netstg2.img"; - if (totalMemory() < 128000) + if (totalMemory() < GUI_STAGE2_RAM) logMessage(WARNING, "URLINSTALL falling back to non-GUI stage2 " "due to insufficient RAM"); } else { -- cgit