summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2018-04-20 15:43:30 +0200
committerGitHub <noreply@github.com>2018-04-20 15:43:30 +0200
commitb5c204ac6f1c309babf439664686af7807fd83ab (patch)
treec3a1344775db49885c8fb2b83d8ac861f664b20c
parentMerge pull request #363 from lioncash/array-size (diff)
parentcommon_funcs: Remove check for VS versions that we don't even support (diff)
downloadyuzu-b5c204ac6f1c309babf439664686af7807fd83ab.tar
yuzu-b5c204ac6f1c309babf439664686af7807fd83ab.tar.gz
yuzu-b5c204ac6f1c309babf439664686af7807fd83ab.tar.bz2
yuzu-b5c204ac6f1c309babf439664686af7807fd83ab.tar.lz
yuzu-b5c204ac6f1c309babf439664686af7807fd83ab.tar.xz
yuzu-b5c204ac6f1c309babf439664686af7807fd83ab.tar.zst
yuzu-b5c204ac6f1c309babf439664686af7807fd83ab.zip
-rw-r--r--src/common/common_funcs.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/common/common_funcs.h b/src/common/common_funcs.h
index 19a33cb57..7cf7b7997 100644
--- a/src/common/common_funcs.h
+++ b/src/common/common_funcs.h
@@ -72,11 +72,6 @@ inline u64 _rotr64(u64 x, unsigned int shift) {
#else // _MSC_VER
-#if (_MSC_VER < 1900)
-// Function Cross-Compatibility
-#define snprintf _snprintf
-#endif
-
// Locale Cross-Compatibility
#define locale_t _locale_t