I have:
switch (keyboard_key)
{
case (vk_up):
// blablabla, break and such things that worksHow to write corectly "&&" that will work?
I mean for example:
case (vk_up) && (vk_left):
Do I suspected corectly that one key case should be after than two key cases? Mean
case (vk_up) && (vk_left): case (vk_up): instead of case (vk_up): case (vk_up) && (vk_left):
Ok, what to do that up and left will give me upleft movement? because up is working and left too...
Edited by vv3k70r, 26 September 2009 - 05:43 PM.











