Skip to content

Commit 9e9b95d

Browse files
committed
Cleaning up Console.as
1 parent 157ca03 commit 9e9b95d

File tree

1 file changed

+0
-14
lines changed

1 file changed

+0
-14
lines changed

Flash source/console/Console.as

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -262,14 +262,6 @@ class Console extends MovieClip
262262
var exuiCommand: String = CommandEntry.text.substr(5).toLowerCase();
263263
if(exuiCommand == "fullscreen") {
264264
setFullscreen();
265-
/*
266-
Background._height = Stage.height * 2;
267-
CurrentCell._y = -Stage.height;
268-
CurrentSelection._y = CurrentCell._y + CurrentCell._height;
269-
CommandHistory._y = CurrentSelection._y + CurrentSelection._height;
270-
CommandHistory._height = Math.abs(CommandEntry._y - CommandHistory._y);
271-
*/
272-
273265
ResetCommandEntry();
274266
return;
275267
} else if(exuiCommand == "help") {
@@ -350,12 +342,6 @@ class Console extends MovieClip
350342

351343
public function setCurrentCell(/* values */): Void
352344
{
353-
/*
354-
arguments[1] = arguments[1].toString(16).toUpperCase();
355-
while(arguments[1].length < 8) {
356-
arguments[1] = "0" + arguments[1];
357-
}
358-
*/
359345
arguments[1] = generateFormID(arguments[1]);
360346
if (Console.ConsoleInstance != null)
361347
Console.ConsoleInstance.CurrentCell.text = "Current cell: '" + arguments[0] + "' (FormID " + arguments[1] + ")";

0 commit comments

Comments
 (0)