summaryrefslogtreecommitdiffstats
path: root/src/core/hle/shared_page.cpp
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2015-02-18 06:12:37 +0100
committerbunnei <bunneidev@gmail.com>2015-02-18 06:12:37 +0100
commit745b42d236873522ee854aa7422f8330eaa86c0e (patch)
treecd7be21255658b42e295b6df365c1a74cf70a3aa /src/core/hle/shared_page.cpp
parentMerge pull request #582 from lioncash/warnings (diff)
parentConfigMem: Clean up the Config memory to be more like the shared page and moved (diff)
downloadyuzu-745b42d236873522ee854aa7422f8330eaa86c0e.tar
yuzu-745b42d236873522ee854aa7422f8330eaa86c0e.tar.gz
yuzu-745b42d236873522ee854aa7422f8330eaa86c0e.tar.bz2
yuzu-745b42d236873522ee854aa7422f8330eaa86c0e.tar.lz
yuzu-745b42d236873522ee854aa7422f8330eaa86c0e.tar.xz
yuzu-745b42d236873522ee854aa7422f8330eaa86c0e.tar.zst
yuzu-745b42d236873522ee854aa7422f8330eaa86c0e.zip
Diffstat (limited to 'src/core/hle/shared_page.cpp')
-rw-r--r--src/core/hle/shared_page.cpp8
1 files changed, 1 insertions, 7 deletions
diff --git a/src/core/hle/shared_page.cpp b/src/core/hle/shared_page.cpp
index f0726ef09..568dad684 100644
--- a/src/core/hle/shared_page.cpp
+++ b/src/core/hle/shared_page.cpp
@@ -3,6 +3,7 @@
// Refer to the license.txt file included.
#include "common/common_types.h"
+#include "common/common_funcs.h"
#include "core/core.h"
#include "core/mem_map.h"
@@ -13,13 +14,6 @@
namespace SharedPage {
-// helper macro to properly align structure members.
-// Calling INSERT_PADDING_BYTES will add a new member variable with a name like "pad121",
-// depending on the current source line to make sure variable names are unique.
-#define INSERT_PADDING_BYTES_HELPER1(x, y) x ## y
-#define INSERT_PADDING_BYTES_HELPER2(x, y) INSERT_PADDING_BYTES_HELPER1(x, y)
-#define INSERT_PADDING_BYTES(num_words) u8 INSERT_PADDING_BYTES_HELPER2(pad, __LINE__)[(num_words)]
-
// see http://3dbrew.org/wiki/Configuration_Memory#Shared_Memory_Page_For_ARM11_Processes
#pragma pack(1)