1
0
Fork 0
mirror of https://github.com/AquariaOSE/Aquaria.git synced 2025-10-13 10:00:43 +00:00

remove last remains of DRM-related code and cleanup main() a bit

This commit is contained in:
fgenesis 2011-08-11 01:51:03 +02:00
commit 7f9af044d7
6 changed files with 45 additions and 219 deletions

View file

@ -34,7 +34,6 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
#include "GridRender.h"
#include "AutoMap.h"
#include "PackRead.h"
#include "Protect.h"
#include "RoundedRect.h"
#include "TTFFont.h"
@ -904,21 +903,6 @@ void DSQ::setVersionLabelText() {
os << AQUARIA_CUSTOM_BUILD_ID;
#endif
std::string regName;
#if AQUARIA_NODRM
#elif AQUARIA_FULL
os << " Registered to ";
if (!getRegistrationName(regName))
exit(1);
os << regName;
#elif !defined(AQUARIA_DEMO)
os << " Registered to ";
os << "Review Copy";
#endif
versionLabel->setText(os.str());
}