diff options
author | Clyne Sullivan <clyne@bitgloo.com> | 2021-10-30 16:50:03 -0400 |
---|---|---|
committer | Clyne Sullivan <clyne@bitgloo.com> | 2021-10-30 16:50:03 -0400 |
commit | 79032a73d586df88e4438c1d3809b726d9d69600 (patch) | |
tree | 77001e60e0832629c695ba79e66cb286575a6318 /source/code.cpp | |
parent | 12440b673f55eb4bfac5f553923de7ce9508a2a7 (diff) |
status monitoring; improve connection safety
Diffstat (limited to 'source/code.cpp')
-rw-r--r-- | source/code.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source/code.cpp b/source/code.cpp index 2f10b90..e290440 100644 --- a/source/code.cpp +++ b/source/code.cpp @@ -24,7 +24,7 @@ #include <iostream> #include <string> -extern stmdsp::device *m_device; +extern std::shared_ptr<stmdsp::device> m_device; extern void log(const std::string& str); @@ -75,7 +75,7 @@ void compileEditorCode() } stmdsp::platform platform; - if (m_device != nullptr) { + if (m_device) { platform = m_device->get_platform(); } else { // Assume a default. |