From d2adb4a2bcebb8b4edd8edb8989d1331d3137be6 Mon Sep 17 00:00:00 2001 From: "p.kosyh" Date: Mon, 30 May 2011 07:04:31 +0000 Subject: [PATCH] fixes in doc --- doc/writing_games-en.txt | 4 ++-- doc/writing_games.txt | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) 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);