summaryrefslogtreecommitdiffstats
path: root/src/common
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2015-08-20 02:40:31 +0200
committerbunnei <bunneidev@gmail.com>2015-08-20 02:40:31 +0200
commit21ba05e5f1a571dd26fd5bf06afcb993b1ca301f (patch)
tree79f9971851cfe9d416f07367e5f592972a086e4b /src/common
parentMerge pull request #1055 from aroulin/shader-sge-sgei-slt (diff)
parentFix building under MinGW (diff)
downloadyuzu-21ba05e5f1a571dd26fd5bf06afcb993b1ca301f.tar
yuzu-21ba05e5f1a571dd26fd5bf06afcb993b1ca301f.tar.gz
yuzu-21ba05e5f1a571dd26fd5bf06afcb993b1ca301f.tar.bz2
yuzu-21ba05e5f1a571dd26fd5bf06afcb993b1ca301f.tar.lz
yuzu-21ba05e5f1a571dd26fd5bf06afcb993b1ca301f.tar.xz
yuzu-21ba05e5f1a571dd26fd5bf06afcb993b1ca301f.tar.zst
yuzu-21ba05e5f1a571dd26fd5bf06afcb993b1ca301f.zip
Diffstat (limited to '')
-rw-r--r--src/common/common_funcs.h12
-rw-r--r--src/common/file_util.h2
2 files changed, 10 insertions, 4 deletions
diff --git a/src/common/common_funcs.h b/src/common/common_funcs.h
index 88e452a16..ed20c3629 100644
--- a/src/common/common_funcs.h
+++ b/src/common/common_funcs.h
@@ -45,14 +45,20 @@
// GCC 4.8 defines all the rotate functions now
// Small issue with GCC's lrotl/lrotr intrinsics is they are still 32bit while we require 64bit
-#ifndef _rotl
-inline u32 _rotl(u32 x, int shift) {
+#ifdef _rotl
+#define rotl _rotl
+#else
+inline u32 rotl(u32 x, int shift) {
shift &= 31;
if (!shift) return x;
return (x << shift) | (x >> (32 - shift));
}
+#endif
-inline u32 _rotr(u32 x, int shift) {
+#ifdef _rotr
+#define rotr _rotr
+#else
+inline u32 rotr(u32 x, int shift) {
shift &= 31;
if (!shift) return x;
return (x >> shift) | (x << (32 - shift));
diff --git a/src/common/file_util.h b/src/common/file_util.h
index d0dccdf69..e71a9b2fa 100644
--- a/src/common/file_util.h
+++ b/src/common/file_util.h
@@ -244,7 +244,7 @@ private:
template <typename T>
void OpenFStream(T& fstream, const std::string& filename, std::ios_base::openmode openmode)
{
-#ifdef _WIN32
+#ifdef _MSC_VER
fstream.open(Common::UTF8ToTStr(filename).c_str(), openmode);
#else
fstream.open(filename.c_str(), openmode);