citra-qt: Removed unused and unimplemented ramview files.
This commit is contained in:
parent
25c5aa5869
commit
380c165339
@ -14,7 +14,6 @@ set(SRCS
|
|||||||
debugger/graphics/graphics_tracing.cpp
|
debugger/graphics/graphics_tracing.cpp
|
||||||
debugger/graphics/graphics_vertex_shader.cpp
|
debugger/graphics/graphics_vertex_shader.cpp
|
||||||
debugger/profiler.cpp
|
debugger/profiler.cpp
|
||||||
debugger/ramview.cpp
|
|
||||||
debugger/registers.cpp
|
debugger/registers.cpp
|
||||||
debugger/wait_tree.cpp
|
debugger/wait_tree.cpp
|
||||||
util/spinbox.cpp
|
util/spinbox.cpp
|
||||||
@ -48,7 +47,6 @@ set(HEADERS
|
|||||||
debugger/graphics/graphics_tracing.h
|
debugger/graphics/graphics_tracing.h
|
||||||
debugger/graphics/graphics_vertex_shader.h
|
debugger/graphics/graphics_vertex_shader.h
|
||||||
debugger/profiler.h
|
debugger/profiler.h
|
||||||
debugger/ramview.h
|
|
||||||
debugger/registers.h
|
debugger/registers.h
|
||||||
debugger/wait_tree.h
|
debugger/wait_tree.h
|
||||||
util/spinbox.h
|
util/spinbox.h
|
||||||
|
@ -1,12 +0,0 @@
|
|||||||
// Copyright 2014 Citra Emulator Project
|
|
||||||
// Licensed under GPLv2 or any later version
|
|
||||||
// Refer to the license.txt file included.
|
|
||||||
|
|
||||||
#include "citra_qt/debugger/ramview.h"
|
|
||||||
|
|
||||||
GRamView::GRamView(QWidget* parent) : QHexEdit(parent) {}
|
|
||||||
|
|
||||||
void GRamView::OnCPUStepped() {
|
|
||||||
// TODO: QHexEdit doesn't show vertical scroll bars for > 10MB data streams...
|
|
||||||
// setData(QByteArray((const char*)Mem_RAM,sizeof(Mem_RAM)/8));
|
|
||||||
}
|
|
@ -1,17 +0,0 @@
|
|||||||
// Copyright 2014 Citra Emulator Project
|
|
||||||
// Licensed under GPLv2 or any later version
|
|
||||||
// Refer to the license.txt file included.
|
|
||||||
|
|
||||||
#pragma once
|
|
||||||
|
|
||||||
#include "qhexedit.h"
|
|
||||||
|
|
||||||
class GRamView : public QHexEdit {
|
|
||||||
Q_OBJECT
|
|
||||||
|
|
||||||
public:
|
|
||||||
explicit GRamView(QWidget* parent = nullptr);
|
|
||||||
|
|
||||||
public slots:
|
|
||||||
void OnCPUStepped();
|
|
||||||
};
|
|
@ -24,7 +24,6 @@
|
|||||||
#include "citra_qt/debugger/graphics/graphics_tracing.h"
|
#include "citra_qt/debugger/graphics/graphics_tracing.h"
|
||||||
#include "citra_qt/debugger/graphics/graphics_vertex_shader.h"
|
#include "citra_qt/debugger/graphics/graphics_vertex_shader.h"
|
||||||
#include "citra_qt/debugger/profiler.h"
|
#include "citra_qt/debugger/profiler.h"
|
||||||
#include "citra_qt/debugger/ramview.h"
|
|
||||||
#include "citra_qt/debugger/registers.h"
|
#include "citra_qt/debugger/registers.h"
|
||||||
#include "citra_qt/debugger/wait_tree.h"
|
#include "citra_qt/debugger/wait_tree.h"
|
||||||
#include "citra_qt/game_list.h"
|
#include "citra_qt/game_list.h"
|
||||||
|
Loading…
Reference in New Issue
Block a user