Browse Source

removed damn autoquote

UltimateByte 10 years ago
parent
commit
cce566e885
1 changed files with 1 additions and 1 deletions
  1. 1 1
      lgsm/functions/check_system_requirements.sh

+ 1 - 1
lgsm/functions/check_system_requirements.sh

@@ -14,7 +14,7 @@ fi
 
 # If the game or engine has a minimum RAM Requirement, compare it to system's available RAM
 if [ -n "${ramrequirement}" ]; then
-  if [ "${mbphysmem}" -lt "${ramrequirement}"" ]; then
+  if [ "${mbphysmem}" -lt "${ramrequirement}" ]; then
     # Warn the user
     fn_print_warn "Insufficient physical RAM: ${mbphysmem}MB available for ${ramrequirement}MB required."
     sleep 2