Partway through the SSL refactor, code is operational again (in plaintext)
This commit is contained in:
@@ -236,10 +236,6 @@ int DrivenEngine::drv_notify_accept(int port) {
|
||||
return chid;
|
||||
}
|
||||
|
||||
void DrivenEngine::drv_set_clock(double t) {
|
||||
clock_ = t;
|
||||
}
|
||||
|
||||
void DrivenEngine::drv_set_lua_source(util::LuaSourcePtr source) {
|
||||
lua_source_ = std::move(source);
|
||||
rescan_lua_source_ = false;
|
||||
@@ -249,7 +245,8 @@ void DrivenEngine::drv_invoke_event_init(int argc, char *argv[]) {
|
||||
event_init(argc, argv);
|
||||
}
|
||||
|
||||
void DrivenEngine::drv_invoke_event_update() {
|
||||
void DrivenEngine::drv_invoke_event_update(double clock) {
|
||||
clock_ = clock;
|
||||
event_update();
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user