Restored floating point time granularity.
This commit is contained in:
+2
-2
@@ -779,8 +779,8 @@ function core.confirm_close_docs(docs, close_fn, ...)
|
||||
end
|
||||
end
|
||||
|
||||
local temp_uid = (system.get_time() * 1000) % 0xffffffff
|
||||
local temp_file_prefix = string.format(".lite_temp_%08x", temp_uid)
|
||||
local temp_uid = math.floor(system.get_time() * 1000) % 0xffffffff
|
||||
local temp_file_prefix = string.format(".lite_temp_%08x", tonumber(temp_uid))
|
||||
local temp_file_counter = 0
|
||||
|
||||
local function delete_temp_files()
|
||||
|
||||
Reference in New Issue
Block a user