diff options
| author | 2017-05-27 16:14:10 -0700 | |
|---|---|---|
| committer | 2017-05-27 16:14:10 -0700 | |
| commit | 2579ae543b0ede7b348a6c5d4822f0a36b854fa4 (patch) | |
| tree | 905929aeef1f2420c5873b3327086db52482e694 /src/common/common_funcs.h | |
| parent | Move framebuffer_layout from Common to Core (diff) | |
| download | yuzu-2579ae543b0ede7b348a6c5d4822f0a36b854fa4.tar.gz yuzu-2579ae543b0ede7b348a6c5d4822f0a36b854fa4.tar.xz yuzu-2579ae543b0ede7b348a6c5d4822f0a36b854fa4.zip | |
Common: Fix some out-of-style includes
Diffstat (limited to 'src/common/common_funcs.h')
| -rw-r--r-- | src/common/common_funcs.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/common_funcs.h b/src/common/common_funcs.h index b141e79ed..2e7877500 100644 --- a/src/common/common_funcs.h +++ b/src/common/common_funcs.h | |||
| @@ -7,7 +7,7 @@ | |||
| 7 | #if !defined(ARCHITECTURE_x86_64) && !defined(_M_ARM) | 7 | #if !defined(ARCHITECTURE_x86_64) && !defined(_M_ARM) |
| 8 | #include <cstdlib> // for exit | 8 | #include <cstdlib> // for exit |
| 9 | #endif | 9 | #endif |
| 10 | #include "common_types.h" | 10 | #include "common/common_types.h" |
| 11 | 11 | ||
| 12 | #define ARRAY_SIZE(a) (sizeof(a) / sizeof(a[0])) | 12 | #define ARRAY_SIZE(a) (sizeof(a) / sizeof(a[0])) |
| 13 | 13 | ||