diff options
| author | 2014-04-08 19:25:03 -0400 | |
|---|---|---|
| committer | 2014-04-08 19:25:03 -0400 | |
| commit | 63e46abdb8764bc97e91bae862c8d461e61b1965 (patch) | |
| tree | e73f4aa25d7b4015a265e7bbfb6004dab7561027 /src/citra_qt/ramview.cpp | |
| parent | fixed some license headers that I missed (diff) | |
| download | yuzu-63e46abdb8764bc97e91bae862c8d461e61b1965.tar.gz yuzu-63e46abdb8764bc97e91bae862c8d461e61b1965.tar.xz yuzu-63e46abdb8764bc97e91bae862c8d461e61b1965.zip | |
got rid of 'src' folders in each sub-project
Diffstat (limited to 'src/citra_qt/ramview.cpp')
| -rw-r--r-- | src/citra_qt/ramview.cpp | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/citra_qt/ramview.cpp b/src/citra_qt/ramview.cpp new file mode 100644 index 000000000..8cc252af6 --- /dev/null +++ b/src/citra_qt/ramview.cpp | |||
| @@ -0,0 +1,13 @@ | |||
| 1 | #include "ramview.hxx" | ||
| 2 | |||
| 3 | #include "common.h" | ||
| 4 | #include "memory.h" | ||
| 5 | GRamView::GRamView(QWidget* parent) : QHexEdit(parent) | ||
| 6 | { | ||
| 7 | } | ||
| 8 | |||
| 9 | void GRamView::OnCPUStepped() | ||
| 10 | { | ||
| 11 | // TODO: QHexEdit doesn't show vertical scroll bars for > 10MB data streams... | ||
| 12 | //setData(QByteArray((const char*)Mem_RAM,sizeof(Mem_RAM)/8)); | ||
| 13 | } \ No newline at end of file | ||