Skip to content

Commit

Permalink
Remove Lua functions for Version Date/Time
Browse files Browse the repository at this point in the history
  • Loading branch information
poco0317 committed Nov 25, 2019
1 parent ef843ae commit 4b6a20c
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,6 @@ local offsetY = 20

local stringList = {
{"Etterna Version:", ProductFamily() .. " " .. ProductVersion()},
{"Build Date:", VersionDate() .. " " .. VersionTime()},
{"Theme Version:", getThemeName() .. " " .. getThemeVersion()},
{"Total Songs:", SONGMAN:GetNumSongs() .. " Songs in " .. SONGMAN:GetNumSongGroups() .. " Groups"},
{"Total Courses:", SONGMAN:GetNumCourses() .. " Courses in " .. SONGMAN:GetNumCourseGroups() .. " Groups"},
Expand Down
5 changes: 0 additions & 5 deletions src/Etterna/Singletons/LuaManager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1504,11 +1504,6 @@ LuaFunction(ProductFamily, (std::string)PRODUCT_FAMILY);
LuaFunction(ProductVersion, (std::string)product_version);
LuaFunction(ProductID, (std::string)PRODUCT_ID);

extern char const* const version_date;
extern char const* const version_time;
LuaFunction(VersionDate, (std::string)version_date);
LuaFunction(VersionTime, (std::string)version_time);

LuaFunction(scale, SCALE(FArg(1), FArg(2), FArg(3), FArg(4), FArg(5)));

LuaFunction(clamp, clamp(FArg(1), FArg(2), FArg(3)));
Expand Down

0 comments on commit 4b6a20c

Please sign in to comment.