diff options
author | Mnikolenko Productengine <mnikolenko@productengine.com> | 2023-10-23 16:08:46 +0300 |
---|---|---|
committer | Mnikolenko Productengine <mnikolenko@productengine.com> | 2023-10-23 16:08:46 +0300 |
commit | 92f2cf60896e0beb65ab5faaf6894b683121cdbe (patch) | |
tree | a64bd829ce2ac19026434dcbf8ee7ea1e2ffbead /indra/newview | |
parent | 3084f864176dffbc5da19e6f958a55513f63e795 (diff) |
SL-13610 build fix
Diffstat (limited to 'indra/newview')
-rw-r--r-- | indra/newview/llviewerjoystick.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llviewerjoystick.cpp b/indra/newview/llviewerjoystick.cpp index ef96ea4493..4577f71061 100644 --- a/indra/newview/llviewerjoystick.cpp +++ b/indra/newview/llviewerjoystick.cpp @@ -1446,7 +1446,7 @@ void LLViewerJoystick::saveDeviceIdToSettings() // someone editing the xml will corrupt it // so convert to string first std::string device_string = getDeviceUUIDString(); - gSavedSettings.setLLSD("JoystickDeviceUUID", LLSD(device_string); + gSavedSettings.setLLSD("JoystickDeviceUUID", LLSD(device_string)); #else LLSD device_id = getDeviceUUID(); gSavedSettings.setLLSD("JoystickDeviceUUID", device_id); |