From 1d225b82de482e413b88059669dce1c3c47c2cd9 Mon Sep 17 00:00:00 2001 From: Zi Ree Date: Sun, 7 Feb 2021 14:49:43 +0100 Subject: [PATCH] Switch back to BOOL to make windows compiler happy --- indra/newview/fslslbridge.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/indra/newview/fslslbridge.cpp b/indra/newview/fslslbridge.cpp index 9294f9850e..60c48e3ff5 100644 --- a/indra/newview/fslslbridge.cpp +++ b/indra/newview/fslslbridge.cpp @@ -327,8 +327,9 @@ bool FSLSLBridge::lslToViewer(const std::string& message, const LLUUID& fromID, if (valuepos != std::string::npos) { // send appropriate enable/disable messages to nearby chat - FIRE-24160 - bool aoWasPaused = gSavedPerAccountSettings.getBOOL("PauseAO"); - bool aoStandsWasEnabled = gSavedPerAccountSettings.getBOOL("UseAOStands"); + // use BOOL to satisfy windows compiler + BOOL aoWasPaused = gSavedPerAccountSettings.getBOOL("PauseAO"); + BOOL aoStandsWasEnabled = gSavedPerAccountSettings.getBOOL("UseAOStands"); // if (message.substr(valuepos + FS_STATE_ATTRIBUTE.size(), 2) == "on")