| 913 | } |
| 914 | |
| 915 | void startRecording() |
| 916 | { |
| 917 | // Handle recording initialization |
| 918 | startCommonReplayStates(); |
| 919 | recordReplaySeed(); |
| 920 | setRecording(true); |
| 921 | setDemoPlayback(false); |
| 922 | saveTick(); |
| 923 | saveInitTime(); |
| 924 | |
| 925 | if (shouldLogReplay()) |
| 926 | { |
| 927 | TFE_System::logClose(); |
| 928 | TFE_System::logOpen("record.log");; |
| 929 | TFE_System::logTimeToggle(); |
| 930 | } |
| 931 | } |
| 932 | |
| 933 | void endRecording() |
| 934 | { |
no test coverage detected