mirror of
https://github.com/encounter/SDL.git
synced 2025-12-14 23:56:19 +00:00
use 'U' suffix on constants instead of (unsigned int) cast.
This commit is contained in:
@@ -61,7 +61,7 @@ typedef enum
|
||||
k_eControllertype_GenericMouse = 800,
|
||||
} EControllerType;
|
||||
|
||||
#define MAKE_CONTROLLER_ID( nVID, nPID ) (unsigned int)( (unsigned int)nVID << 16 | nPID )
|
||||
#define MAKE_CONTROLLER_ID( nVID, nPID ) (unsigned int)( (unsigned int)nVID << 16 | (unsigned int)nPID )
|
||||
typedef struct
|
||||
{
|
||||
unsigned int m_unDeviceID;
|
||||
|
||||
Reference in New Issue
Block a user