diff --git a/doc/writing_games-en.txt b/doc/writing_games-en.txt index 240e5e4..e85ecc7 100644 --- a/doc/writing_games-en.txt +++ b/doc/writing_games-en.txt @@ -1364,7 +1364,7 @@ end timer:set(100); main = room { _time = 1, - force_dsc = true, + forcedsc = true, nam = 'Timer', dsc = function(s) return 'Example: '..tostring(s._time); @@ -1396,7 +1396,7 @@ end main = room { _txt = '_', - force_dsc = true, + forcedsc = true, nam = 'Keyboard', dsc = function(s) return 'Example: '..tostring(s._txt); diff --git a/doc/writing_games.txt b/doc/writing_games.txt index 9053c22..a51c3fb 100644 --- a/doc/writing_games.txt +++ b/doc/writing_games.txt @@ -1356,7 +1356,7 @@ end timer:set(100); main = room { _time = 1, - force_dsc = true, + forcedsc = true, nam = 'Таймер', dsc = function(s) return 'Демонстрация: '..tostring(s._time); @@ -1388,7 +1388,7 @@ end main = room { _txt = '_', - force_dsc = true, + forcedsc = true, nam = 'Клавиатура', dsc = function(s) return 'Демонстрация: '..tostring(s._txt);