summaryrefslogtreecommitdiff
path: root/src/common/atomic.h
diff options
context:
space:
mode:
authorGravatar bunnei2014-04-08 20:15:08 -0400
committerGravatar bunnei2014-04-08 20:15:08 -0400
commitde0a034a849f5a1cbe2fed9ef2cc4095c56e672a (patch)
treec19b7a97fded29a04d7aca5702ab901820a663dc /src/common/atomic.h
parentgot rid of 'src' folders in each sub-project (diff)
downloadyuzu-de0a034a849f5a1cbe2fed9ef2cc4095c56e672a.tar.gz
yuzu-de0a034a849f5a1cbe2fed9ef2cc4095c56e672a.tar.xz
yuzu-de0a034a849f5a1cbe2fed9ef2cc4095c56e672a.zip
fixed project includes to use new directory structure
Diffstat (limited to 'src/common/atomic.h')
-rw-r--r--src/common/atomic.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/common/atomic.h b/src/common/atomic.h
index 883bc14fb..ff2fb23d3 100644
--- a/src/common/atomic.h
+++ b/src/common/atomic.h
@@ -7,12 +7,12 @@
7 7
8#ifdef _WIN32 8#ifdef _WIN32
9 9
10#include "atomic_win32.h" 10#include "common/atomic_win32.h"
11 11
12#else 12#else
13 13
14// GCC-compatible compiler assumed! 14// GCC-compatible compiler assumed!
15#include "atomic_gcc.h" 15#include "common/atomic_gcc.h"
16 16
17#endif 17#endif
18 18