Don't use "exp" as a name so that it's doesn´t show up with searching for the function
This commit is contained in:
parent
161dd83c9a
commit
6fb50bd0a6
3 changed files with 5 additions and 5 deletions
|
@ -679,7 +679,7 @@ RAWINPUT_DeviceFromHandle(HANDLE hDevice)
|
|||
static void
|
||||
RAWINPUT_AddDevice(HANDLE hDevice)
|
||||
{
|
||||
#define CHECK(exp) { if(!(exp)) goto err; }
|
||||
#define CHECK(expression) { if(!(expression)) goto err; }
|
||||
SDL_RAWINPUT_Device *device = NULL;
|
||||
SDL_RAWINPUT_Device *curr, *last;
|
||||
RID_DEVICE_INFO rdi;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue