Issue: Potential TTimeMarker.start bug

  1. issueid=375 11-24-2014 10:12 PM
    SRL Member
    Potential TTimeMarker.start bug

    I'm not certain if this is intended or is a bug. The start method works as a restart method, which essentially makes no need for reset. I don't think this is intended, but not sure.
    Simba Code:
    {$i srl-6/srl.simba}

    var t: TTimeMarker;
    begin
      t.start();
      wait(1000);
      writeLn(t.getTime());
      writeLn(t.getTotalTime());
      t.start();
      wait(500);
      writeLn(t.getTime());
      writeLn(t.getTotalTime());
    end.
    Progress Report:
    Compiled successfully in 1422 ms.
    1000
    1000
    500
    500
    Successfully executed.
Issue Details
Issue Number 375
Project SRL Bugs and Suggestions
Status Not a Bug
Users able to reproduce bug 0
Users unable to reproduce bug 0
Assigned Users (none)
Tags (none)




  1. 11-25-2014 03:26 PM
    Issue Changed by Ashaman88
    • Status changed from Unconfirmed to Not a Bug
+ Reply