Detected 5 occurrence(s) of ‘GetAsyncKeyState\(‘: else if(GetAsyncKeyState(VK_LEFT)) { int x2 = x-1; if(map[y][x2] == ' ') { map[y][x] = ' '; x--; map[y][x] = '@'; } } else if(GetAsyncKeyState(VK_UP)) { int y2 = y-1; if(map[y2][x] == ' ') { map[y][x] = ' '; y--; map[y][x] = '@'; } } Sleep(100); } retur Source: http://pastebin.com/raw.php?i=csqGcq6c
↧