diff options
| author | 2015-05-24 12:16:22 -0700 | |
|---|---|---|
| committer | 2015-05-30 11:17:36 -0700 | |
| commit | 5df2d1b5f75e0ee2d3fce7131fcee5dc8e1d7cc4 (patch) | |
| tree | 1a26ca3a3015ce6415a6ae48dca17ed0eeb2d252 /src/citra_qt/debugger/graphics_cmdlists.cpp | |
| parent | Merge pull request #810 from yuriks/memmap (diff) | |
| download | yuzu-5df2d1b5f75e0ee2d3fce7131fcee5dc8e1d7cc4.tar.gz yuzu-5df2d1b5f75e0ee2d3fce7131fcee5dc8e1d7cc4.tar.xz yuzu-5df2d1b5f75e0ee2d3fce7131fcee5dc8e1d7cc4.zip | |
Move video_core/math.h to common/vector_math.h
The file only contained vector manipulation code, and such widely-useable code doesn't belong in video_core.
Diffstat (limited to 'src/citra_qt/debugger/graphics_cmdlists.cpp')
| -rw-r--r-- | src/citra_qt/debugger/graphics_cmdlists.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/citra_qt/debugger/graphics_cmdlists.cpp b/src/citra_qt/debugger/graphics_cmdlists.cpp index 804c735a3..cabf5fe07 100644 --- a/src/citra_qt/debugger/graphics_cmdlists.cpp +++ b/src/citra_qt/debugger/graphics_cmdlists.cpp | |||
| @@ -11,10 +11,10 @@ | |||
| 11 | #include <QSpinBox> | 11 | #include <QSpinBox> |
| 12 | #include <QComboBox> | 12 | #include <QComboBox> |
| 13 | 13 | ||
| 14 | #include "video_core/pica.h" | 14 | #include "common/vector_math.h" |
| 15 | #include "video_core/math.h" | ||
| 16 | 15 | ||
| 17 | #include "video_core/debug_utils/debug_utils.h" | 16 | #include "video_core/debug_utils/debug_utils.h" |
| 17 | #include "video_core/pica.h" | ||
| 18 | 18 | ||
| 19 | #include "graphics_cmdlists.h" | 19 | #include "graphics_cmdlists.h" |
| 20 | 20 | ||