Skip to content

Instantly share code, notes, and snippets.

@tekkub
Created August 10, 2008 20:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tekkub/4764 to your computer and use it in GitHub Desktop.
Save tekkub/4764 to your computer and use it in GitHub Desktop.
function GameTime_GetLocalTime(wantAMPM)
--~ local dateInfo = date("*t"); -- THIS CREATES A TABLE EVERY CALL! Bad!!!!
local hour, minute = date("%H"), date("%M")
return GameTime_GetFormattedTime(hour, minute, wantAMPM), hour, minute
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment