mirror of
https://github.com/aseprite/aseprite.git
synced 2024-12-28 15:20:15 +00:00
11 lines
229 B
Lua
11 lines
229 B
Lua
|
-- ase -- allegro-sprite-editor: the ultimate sprites factory
|
||
|
-- Copyright (C) 2001-2005 by David A. Capello
|
||
|
|
||
|
function GUI_SwitchREC()
|
||
|
if is_rec_screen() then
|
||
|
rec_screen_off()
|
||
|
else
|
||
|
rec_screen_on()
|
||
|
end
|
||
|
end
|