1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-03 06:04:53 +00:00

games/aquaria: drop tinyxml2 5.0.0 workaround after r444478

https://github.com/leethomason/tinyxml2/commit/8c9e3133c4cc
This commit is contained in:
Jan Beich 2017-06-29 03:03:18 +00:00
parent 5ae1f25c72
commit 6bbef7f007
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=444619
2 changed files with 1 additions and 25 deletions

View File

@ -4,7 +4,7 @@ PORTNAME= aquaria
DISTVERSIONPREFIX= OSE-v
DISTVERSION= 1.002-22
DISTVERSIONSUFFIX= -g84366ad
PORTREVISION= 1
PORTREVISION= 2
CATEGORIES= games
MAINTAINER= jbeich@FreeBSD.org

View File

@ -1,24 +0,0 @@
https://github.com/AquariaOSE/Aquaria/issues/59
--- Aquaria/Continuity.cpp.orig 2016-06-19 23:56:27 UTC
+++ Aquaria/Continuity.cpp
@@ -2737,7 +2737,7 @@ void Continuity::loadFileData(int slot, XMLDocument &d
}
if (doc.Parse(buf, size) != XML_SUCCESS)
{
- errorLog("Failed to load save data: " + teh_file + " -- Error: " + doc.GetErrorStr1());
+ errorLog("Failed to load save data: " + teh_file + " -- Error: " + doc.ErrorName());
return;
}
}
--- Aquaria/DSQ.cpp.orig 2016-06-19 23:56:27 UTC
+++ Aquaria/DSQ.cpp
@@ -2079,7 +2079,7 @@ void DSQ::loadModsCallback(const std::string &filename
if(!Mod::loadModXML(&d, name))
{
std::ostringstream os;
- os << "Failed to load mod xml: " << filename << " -- Error: " << d.GetErrorStr1();
+ os << "Failed to load mod xml: " << filename << " -- Error: " << d.ErrorName();
dsq->debugLog(os.str());
return;
}