diff options
| author | 2018-04-19 22:28:54 -0400 | |
|---|---|---|
| committer | 2018-04-19 22:28:56 -0400 | |
| commit | 902fc61ef82084957271288d847d8c06a98f5acd (patch) | |
| tree | 241fc5da97840834d4ec4fe64bc0c4f4610ad355 /src | |
| parent | Merge pull request #356 from lioncash/shader (diff) | |
| download | yuzu-902fc61ef82084957271288d847d8c06a98f5acd.tar.gz yuzu-902fc61ef82084957271288d847d8c06a98f5acd.tar.xz yuzu-902fc61ef82084957271288d847d8c06a98f5acd.zip | |
common_funcs: Remove check for VS versions that we don't even support
We don't support any VS versions that don't already have snprintf in the
standard library implementation.
Diffstat (limited to 'src')
| -rw-r--r-- | src/common/common_funcs.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/common/common_funcs.h b/src/common/common_funcs.h index 6f0604958..24a325ba2 100644 --- a/src/common/common_funcs.h +++ b/src/common/common_funcs.h | |||
| @@ -74,11 +74,6 @@ inline u64 _rotr64(u64 x, unsigned int shift) { | |||
| 74 | 74 | ||
| 75 | #else // _MSC_VER | 75 | #else // _MSC_VER |
| 76 | 76 | ||
| 77 | #if (_MSC_VER < 1900) | ||
| 78 | // Function Cross-Compatibility | ||
| 79 | #define snprintf _snprintf | ||
| 80 | #endif | ||
| 81 | |||
| 82 | // Locale Cross-Compatibility | 77 | // Locale Cross-Compatibility |
| 83 | #define locale_t _locale_t | 78 | #define locale_t _locale_t |
| 84 | 79 | ||