Skip to content
Snippets Groups Projects
Commit 10b65b06 authored by deuce's avatar deuce
Browse files

Fix tleft() and tlef() functions.

parent 787d356a
No related branches found
No related tags found
No related merge requests found
......@@ -157,7 +157,10 @@ var GameProperties = [
];
var game=new RecordFile(game_dir+'game.dat', GameProperties);
function tleft() {}
function tleft()
{
bbs.gettimeleft();
}
function sysoplog() {}
function ansic(x) {
......@@ -244,7 +247,7 @@ function setcol(c)
function tlef()
{
var tl=bbs.time_left;
var tl=bbs.get_time_left();
return(parseInt(tl/60)+":"+format("%02d",tl%80));
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment