summaryrefslogtreecommitdiffstatshomepage
path: root/src/osd/modules/debugger/debugimgui.cpp
diff options
context:
space:
mode:
author smf- <smf-@users.noreply.github.com>2022-09-15 13:38:44 +0100
committer smf- <smf-@users.noreply.github.com>2022-09-15 13:39:13 +0100
commitbdb9404c08908249210be53ddd640c165e6df1ed (patch)
treee8851389faac488b937c9e3008a1b381777730c5 /src/osd/modules/debugger/debugimgui.cpp
parent8a5a7f7ccdd90ece71f8fe6e61391ccd4092f68b (diff)
fixes for clang 15.0 on windows [smf]
Diffstat (limited to '')
-rw-r--r--src/osd/modules/debugger/debugimgui.cpp4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/osd/modules/debugger/debugimgui.cpp b/src/osd/modules/debugger/debugimgui.cpp
index 944ed203b79..8aed9b2c51e 100644
--- a/src/osd/modules/debugger/debugimgui.cpp
+++ b/src/osd/modules/debugger/debugimgui.cpp
@@ -1013,7 +1013,6 @@ void debug_imgui::refresh_filelist()
std::error_condition const err = util::zippath_directory::open(m_path,dir);
if(!err)
{
- int x = 0;
// add drives
for(std::string const &volume_name : osd_get_volume_names())
{
@@ -1022,7 +1021,6 @@ void debug_imgui::refresh_filelist()
temp.basename = volume_name;
temp.fullpath = volume_name;
m_filelist.emplace_back(std::move(temp));
- x++;
}
first = m_filelist.size();
const osd::directory::entry *dirent;
@@ -1393,7 +1391,6 @@ void debug_imgui::update()
//debug_area* view_ptr = view_list;
std::vector<debug_area*>::iterator view_ptr;
bool opened;
- int count = 0;
ImGui::PushStyleColor(ImGuiCol_WindowBg,ImVec4(1.0f,1.0f,1.0f,0.9f));
ImGui::PushStyleColor(ImGuiCol_Text,ImVec4(0.0f,0.0f,0.0f,1.0f));
ImGui::PushStyleColor(ImGuiCol_TextDisabled,ImVec4(0.0f,0.0f,1.0f,1.0f));
@@ -1438,7 +1435,6 @@ void debug_imgui::update()
break;
}
++view_ptr;
- count++;
}
// check for a closed window
if(to_delete != nullptr)