Switch back to BOOL to make windows compiler happy

master
Zi Ree 2021-02-07 14:49:43 +01:00
parent 31b0224947
commit 1d225b82de
1 changed files with 3 additions and 2 deletions

View File

@ -327,8 +327,9 @@ bool FSLSLBridge::lslToViewer(const std::string& message, const LLUUID& fromID,
if (valuepos != std::string::npos)
{
// <FS:Zi> 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");
// </FS:Zi>
if (message.substr(valuepos + FS_STATE_ATTRIBUTE.size(), 2) == "on")