diff options
author | Clyne Sullivan <clyne@bitgloo.com> | 2021-10-03 08:27:08 -0400 |
---|---|---|
committer | Clyne Sullivan <clyne@bitgloo.com> | 2021-10-03 08:27:08 -0400 |
commit | 1cf4908a23dc5537be0bab1089ffcaa7079d5434 (patch) | |
tree | a78dfd5c527baeaf1cfe1397012b82d710bddbb3 /source/code.cpp | |
parent | 1c5a7e71cecb86a9682f825f6c20ecaeb445f32c (diff) |
implement most of device features
Diffstat (limited to 'source/code.cpp')
-rw-r--r-- | source/code.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/source/code.cpp b/source/code.cpp index e53165c..2f10b90 100644 --- a/source/code.cpp +++ b/source/code.cpp @@ -24,12 +24,12 @@ #include <iostream> #include <string> -extern std::string tempFileName; extern stmdsp::device *m_device; extern void log(const std::string& str); TextEditor editor; // file.cpp +std::string tempFileName; // device.cpp static std::string editorCompiled; static std::string newTempFileName(); @@ -57,8 +57,6 @@ void codeRenderToolbar() { if (ImGui::Button("Compile")) compileEditorCode(); - ImGui::SameLine(); - ImGui::Button("Upload"); } void codeRenderWidgets() |