mirror of
https://github.com/hrydgard/ppsspp.git
synced 2026-07-11 09:35:09 +02:00
81ef166772
This takes the good parts from #18995 and #18999
22 lines
439 B
C++
22 lines
439 B
C++
#pragma once
|
|
|
|
#include "Windows/W32Util/DialogManager.h"
|
|
#include "Core/MemMap.h"
|
|
#include "Core/Debugger/DebugInterface.h"
|
|
|
|
class CVFPUDlg : public Dialog {
|
|
public:
|
|
CVFPUDlg(HINSTANCE _hInstance, HWND _hParent, DebugInterface *cpu_);
|
|
~CVFPUDlg();
|
|
|
|
void Goto(u32 addr);
|
|
void Update() override;
|
|
void Size();
|
|
|
|
private:
|
|
DebugInterface *cpu;
|
|
HFONT font;
|
|
int mode;
|
|
BOOL DlgProc(UINT message, WPARAM wParam, LPARAM lParam) override;
|
|
};
|