diff options
author | Yuri Kunde Schlesner <yuriks@yuriks.net> | 2015-05-06 09:06:12 +0200 |
---|---|---|
committer | Yuri Kunde Schlesner <yuriks@yuriks.net> | 2015-05-07 20:45:22 +0200 |
commit | e1fbac3ca13d37d2625c11d30cfdece4327b446b (patch) | |
tree | da5daf1999660dbc7e75290627051dd8534131c8 /src/core/hw | |
parent | Common: Move alignment macros to common_funcs.h (diff) | |
download | yuzu-e1fbac3ca13d37d2625c11d30cfdece4327b446b.tar yuzu-e1fbac3ca13d37d2625c11d30cfdece4327b446b.tar.gz yuzu-e1fbac3ca13d37d2625c11d30cfdece4327b446b.tar.bz2 yuzu-e1fbac3ca13d37d2625c11d30cfdece4327b446b.tar.lz yuzu-e1fbac3ca13d37d2625c11d30cfdece4327b446b.tar.xz yuzu-e1fbac3ca13d37d2625c11d30cfdece4327b446b.tar.zst yuzu-e1fbac3ca13d37d2625c11d30cfdece4327b446b.zip |
Diffstat (limited to 'src/core/hw')
-rw-r--r-- | src/core/hw/gpu.h | 4 | ||||
-rw-r--r-- | src/core/hw/hw.cpp | 1 | ||||
-rw-r--r-- | src/core/hw/lcd.cpp | 3 | ||||
-rw-r--r-- | src/core/hw/lcd.h | 3 |
4 files changed, 9 insertions, 2 deletions
diff --git a/src/core/hw/gpu.h b/src/core/hw/gpu.h index c8f884494..699bcd2a5 100644 --- a/src/core/hw/gpu.h +++ b/src/core/hw/gpu.h @@ -6,8 +6,10 @@ #include <cstddef> -#include "common/common_types.h" +#include "common/assert.h" #include "common/bit_field.h" +#include "common/common_funcs.h" +#include "common/common_types.h" namespace GPU { diff --git a/src/core/hw/hw.cpp b/src/core/hw/hw.cpp index 236958139..f4906cc7e 100644 --- a/src/core/hw/hw.cpp +++ b/src/core/hw/hw.cpp @@ -3,6 +3,7 @@ // Refer to the license.txt file included. #include "common/common_types.h" +#include "common/logging/log.h" #include "core/hw/hw.h" #include "core/hw/gpu.h" diff --git a/src/core/hw/lcd.cpp b/src/core/hw/lcd.cpp index 8a09c3bc0..09134c95b 100644 --- a/src/core/hw/lcd.cpp +++ b/src/core/hw/lcd.cpp @@ -2,7 +2,10 @@ // Licensed under GPLv2 or any later version // Refer to the license.txt file included. +#include <cstring> + #include "common/common_types.h" +#include "common/logging/log.h" #include "core/arm/arm_interface.h" #include "core/hle/hle.h" diff --git a/src/core/hw/lcd.h b/src/core/hw/lcd.h index 43893a625..fb14c3b21 100644 --- a/src/core/hw/lcd.h +++ b/src/core/hw/lcd.h @@ -6,8 +6,9 @@ #include <cstddef> -#include "common/common_types.h" #include "common/bit_field.h" +#include "common/common_funcs.h" +#include "common/common_types.h" #define LCD_REG_INDEX(field_name) (offsetof(LCD::Regs, field_name) / sizeof(u32)) |