mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2024-12-22 17:49:43 +01:00
Remove game.customquicksummary
It's completely unused (apart from the variable being set in one place). So let's get this out of the way.
This commit is contained in:
parent
0a72cc6614
commit
73911a7ada
2 changed files with 1 additions and 3 deletions
|
@ -6064,8 +6064,6 @@ bool Game::customsavequick(const std::string& savfile)
|
||||||
std::string summary = savearea + ", " + timestring();
|
std::string summary = savearea + ", " + timestring();
|
||||||
xml::update_tag(msgs, "summary", summary.c_str());
|
xml::update_tag(msgs, "summary", summary.c_str());
|
||||||
|
|
||||||
customquicksummary = summary;
|
|
||||||
|
|
||||||
if(!FILESYSTEM_saveTiXml2Document(("saves/"+levelfile+".vvv").c_str(), doc))
|
if(!FILESYSTEM_saveTiXml2Document(("saves/"+levelfile+".vvv").c_str(), doc))
|
||||||
{
|
{
|
||||||
vlog_error("Could Not Save game!");
|
vlog_error("Could Not Save game!");
|
||||||
|
|
|
@ -491,7 +491,7 @@ public:
|
||||||
std::string activity_lastprompt;
|
std::string activity_lastprompt;
|
||||||
bool activity_gettext;
|
bool activity_gettext;
|
||||||
|
|
||||||
std::string telesummary, quicksummary, customquicksummary;
|
std::string telesummary, quicksummary;
|
||||||
bool save_exists(void);
|
bool save_exists(void);
|
||||||
|
|
||||||
bool backgroundtext;
|
bool backgroundtext;
|
||||||
|
|
Loading…
Reference in a new issue