12 lines
137 B
Plaintext
12 lines
137 B
Plaintext
|
if keyboard_check(vk_shift)
|
||
|
{
|
||
|
x += -2
|
||
|
if x < 24
|
||
|
x = xprevious
|
||
|
exit;
|
||
|
}
|
||
|
x += -5
|
||
|
if x < 24
|
||
|
x = xprevious
|
||
|
|