changed request dialog to disable virtual buttons instead of hiding them
[rocksndiamonds.git] / src / tools.c
index 6522b8e741382bc55352fb961f2e4fc5149fdd03..2ff2a6e3a7450e00293d90a81ee25308167fa84a 100644 (file)
@@ -4811,17 +4811,17 @@ static boolean RequestEnvelope(char *text, unsigned int req_state)
 
 boolean Request(char *text, unsigned int req_state)
 {
-  boolean overlay_active = GetOverlayActive();
+  boolean overlay_enabled = GetOverlayEnabled();
   boolean result;
 
-  SetOverlayActive(FALSE);
+  SetOverlayEnabled(FALSE);
 
   if (global.use_envelope_request)
     result = RequestEnvelope(text, req_state);
   else
     result = RequestDoor(text, req_state);
 
-  SetOverlayActive(overlay_active);
+  SetOverlayEnabled(overlay_enabled);
 
   return result;
 }