mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-12 20:17:49 +00:00
COMMON: Use correct MKTAG definition, stupid
This commit is contained in:
parent
0ce2ca4e00
commit
58b4cc0220
@ -147,7 +147,7 @@
|
||||
* be used for character constants. Hence if one uses multi-byte character
|
||||
* constants, a potential portability problem opens up.
|
||||
*/
|
||||
#define MKTAG(a0,a1,a2,a3) ((a0) | ((a1) << 8) | ((a2) << 16) | ((a3) << 24))
|
||||
#define MKTAG(a0,a1,a2,a3) ((a3) | ((a2) << 8) | ((a1) << 16) | ((a0) << 24))
|
||||
|
||||
// Functions for reading/writing native Integers,
|
||||
// this transparently handles the need for alignment
|
||||
|
Loading…
Reference in New Issue
Block a user