I'm trying to trap the 'W' key with the following code, but it doesn't work:

Code:
if (KEY_DOWN(VK_W))
	// Move player two up
Code:
if (KEY_DOWN(57))
	// Move player two up
Neither works...