started ppu

This commit is contained in:
Lauchmelder 2022-03-03 02:33:08 +01:00
parent e7b78f281f
commit f9f401c6c0
No known key found for this signature in database
GPG key ID: C2403C69D78F011D
15 changed files with 313 additions and 54 deletions

View file

@ -34,7 +34,7 @@ void ControllerPortViewer::OnRender()
ImGui::Separator();
ImGui::InputScalar("Shift Register", ImGuiDataType_U8, &controller->outRegister, (const void*)0, (const void*)0, "%02X", ImGuiInputTextFlags_CharsHexadecimal);
if (ImGui::BeginTable(controllerName.c_str(), 8))
{
for(int i = 0; i < 8; i++)
@ -52,6 +52,8 @@ void ControllerPortViewer::OnRender()
ImGui::EndTable();
}
}
counter++;
}
ImGui::End();