Skip to content

Commit

Permalink
Fixed wiki link in IntelXDKPackageDialog.
Browse files Browse the repository at this point in the history
  • Loading branch information
4ian committed Jul 30, 2014
1 parent c5237b7 commit bd034ca
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 6 deletions.
11 changes: 7 additions & 4 deletions GDCpp/GDCpp/IDE/FullProjectCompiler.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,12 @@
#include "GDCpp/CommonTools.h"
#include "GDCpp/ExtensionBase.h"
#include "GDCore/PlatformDefinition/ExternalEvents.h"
#include "GDCore/IDE/ResourcesMergingHelper.h"
#include "GDCore/CommonTools.h"
#include "GDCore/PlatformDefinition/Platform.h"
#include "GDCore/IDE/ProjectStripper.h"
#include "GDCore/IDE/ResourcesMergingHelper.h"
#include "GDCpp/IDE/ExecutableIconChanger.h"
#include "GDCpp/IDE/BaseProfiler.h"
#include "GDCore/PlatformDefinition/Platform.h"
#include "GDCpp/IDE/DependenciesAnalyzer.h"
#include "GDCpp/CppPlatform.h"

Expand Down Expand Up @@ -188,7 +189,7 @@ void FullProjectCompiler::LaunchProjectCompilation()
}

//Create a separate copy of the game in memory, as we're going to apply it some modifications ( i.e changing resources path )
Game game = gameToCompile;
gd::Project game = gameToCompile;

//Prepare resources to copy
diagnosticManager.OnMessage( gd::ToString( _("Preparing resources...") ));
Expand Down Expand Up @@ -280,7 +281,9 @@ void FullProjectCompiler::LaunchProjectCompilation()

wxSafeYield();
diagnosticManager.OnMessage(gd::ToString(_( "Copying resources..." )), gd::ToString(_( "Step 1 out of 3" )));
game.SaveToFile(static_cast<string>( tempDir + "/GDProjectSrcFile.gdg" ));
gd::Project strippedProject = game;
gd::ProjectStripper::StripProject(strippedProject);
strippedProject.SaveToFile(static_cast<string>( tempDir + "/GDProjectSrcFile.gdg" ));
diagnosticManager.OnPercentUpdate(80);

wxSafeYield();
Expand Down
1 change: 0 additions & 1 deletion GDCpp/Runtime/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,6 @@ int main( int argc, char *p_argv[] )
return AbortWithMessage("Unable to parse game data. Aborting.");
}

std::cout << "display:" << uncryptedSrc.c_str();
TiXmlHandle hdl(&doc);
gd::SerializerElement rootElement;
gd::Serializer::FromXML(rootElement, hdl.FirstChildElement().Element());
Expand Down
2 changes: 1 addition & 1 deletion GDJS/GDJS/Dialogs/IntelXDKPackageDialog.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
IntelXDKPackageDialog::IntelXDKPackageDialog(wxWindow* parent, wxString packageLocation)
: BaseIntelXDKPackageDialog(parent)
{
ID_HYPERLINKCTRL117->SetLabel(_("http://wiki.compilgames.net/doku.php/en/game_develop/tutorials/howtouseintelxdk"));
ID_HYPERLINKCTRL117->SetURL(_("http://wiki.compilgames.net/doku.php/en/game_develop/tutorials/howtouseintelxdk"));
packageLocationEdit->SetValue(packageLocation);
}

Expand Down

0 comments on commit bd034ca

Please sign in to comment.