8413b55bc5
Also disable online update by default. (It can be re-enabled in the config.) PKGREVISION -> 8.
28 lines
775 B
C++
28 lines
775 B
C++
$NetBSD: patch-game_main.cpp,v 1.2 2016/12/10 21:46:52 dholland Exp $
|
|
|
|
Add missing include (uncovered by png-1.5).
|
|
Disable online update by default.
|
|
|
|
--- game/main.cpp.orig 2006-06-30 03:46:11.000000000 +0000
|
|
+++ game/main.cpp
|
|
@@ -24,17 +24,18 @@
|
|
#include <ResourceManager.hpp>
|
|
#include <GetDataPath.hpp>
|
|
#include <OnlineUpdate.hpp>
|
|
+#include <zlib.h>
|
|
|
|
#include <sys/stat.h>
|
|
#include <sys/types.h>
|
|
|
|
void migrateConfig( void)
|
|
{
|
|
- //if onlineCheck is not set, default it to true
|
|
+ //if onlineCheck is not set, default it to false
|
|
bool dummy;
|
|
if( ! ConfigS::instance()->getBoolean( "onlineCheck", dummy))
|
|
{
|
|
- ConfigS::instance()->updateKeyword( "onlineCheck", "1");
|
|
+ ConfigS::instance()->updateKeyword( "onlineCheck", "0");
|
|
}
|
|
|
|
#ifdef WIN32
|