mirror of
https://github.com/pound-emu/pound.git
synced 2025-12-16 04:36:57 +00:00
rename kvm references to pvm
The term KVM is missleading because we are not using linux kernel virtualization. PVM stands for "Pound Virtual Machine" which is more accurate. Signed-off-by: Ronald Caesar <github43132@proton.me>
This commit is contained in:
parent
70a1abc62f
commit
9d7b05d6ae
14 changed files with 100 additions and 119 deletions
|
|
@ -1,7 +1,7 @@
|
|||
#include "panels.h"
|
||||
#include <imgui.h>
|
||||
#include <math.h>
|
||||
#include "kvm/kvm.h"
|
||||
#include "pvm/pvm.h"
|
||||
#include "common/passert.h"
|
||||
|
||||
int8_t gui::panel::render_performance_panel(gui::panel::performance_panel_t* panel, performance_data_t* data,
|
||||
|
|
@ -94,7 +94,7 @@ int8_t gui::panel::render_cpu_panel(bool* show_cpu_result_popup)
|
|||
|
||||
if (::ImGui::Button("Run CPU Test", ImVec2(120, 0)))
|
||||
{
|
||||
pound::kvm::cpuTest();
|
||||
pound::pvm::cpuTest();
|
||||
*show_cpu_result_popup = true;
|
||||
}
|
||||
if (true == *show_cpu_result_popup)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue