fixed default graphics for growing or exploding BD engine elements
[rocksndiamonds.git] / src / libgame / misc.c
index af2ac9bc4ef43b8315d89c80655132eb6f0a4043..5e63c31f93307102d0b9903d12bf8aaebf722d25 100644 (file)
@@ -2955,7 +2955,7 @@ boolean get_boolean_from_string(char *s)
   return result;
 }
 
-int get_switch3_from_string(char *s)
+int get_switch_3_state_from_string(char *s)
 {
   char *s_lower = getStringToLower(s);
   int result = FALSE;
@@ -2967,6 +2967,8 @@ int get_switch3_from_string(char *s)
     result = TRUE;
   else if (strEqual(s_lower, "auto"))
     result = STATE_AUTO;
+  else if (strEqual(s_lower, "ask"))
+    result = STATE_ASK;
 
   free(s_lower);