mirror of
				https://github.com/PabloMK7/citra.git
				synced 2025-10-31 22:00:05 +00:00 
			
		
		
		
	
						commit
						21ba05e5f1
					
				
					 3 changed files with 12 additions and 5 deletions
				
			
		|  | @ -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)); | ||||
|  |  | |||
|  | @ -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); | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue