updated on Thu Jan 26 16:09:46 UTC 2012
[aur-mirror.git] / energytycoon / et.patch
bloba8d49a5b7580b1373008fecc5453de39c31b3208
1 --- a/Chart.cpp 2010-08-06 18:06:55.000000000 +0200
2 +++ b/Chart.cpp 2011-02-20 21:45:19.906666670 +0100
3 @@ -1,6 +1,6 @@
4 #include "StdAfx.h"
5 #include "Chart.h"
7 +#include <OgreStringVector.h>
8 /*-----------------------------------------------------------------------------------------------*/
10 Chart::Chart(std::string pName, size_t pWidth, size_t pHeight, size_t pPo2Width,
11 @@ -49,7 +49,7 @@
15 - std::vector<std::string> lResourceGroups =
16 + Ogre::StringVector lResourceGroups =
17 Ogre::ResourceGroupManager::getSingleton().getResourceGroups();
19 bool lFound = false;
20 --- a/GUIMenu.cpp 2010-08-08 18:34:46.000000000 +0200
21 +++ b/GUIMenu.cpp 2011-02-20 21:47:48.943333337 +0100
22 @@ -1,7 +1,7 @@
23 #include "StdAfx.h"
24 #include "GUI.h"
25 #include "Game.h"
27 +#include <OgreStringVector.h>
28 /*-----------------------------------------------------------------------------------------------*/
30 void GUI::menuResumeGamePressed(MyGUI::WidgetPtr _widget)
31 @@ -128,7 +128,7 @@
32 while (start != end) {
33 std::string lOptionName = start->first;
34 std::string lCurrentValue = start->second.currentValue;
35 - std::vector<std::string> lPossibleValues = start->second.possibleValues;
36 + Ogre::StringVector lPossibleValues = start->second.possibleValues;
38 if (lOptionName == "Full Screen") {
39 mGUI->findWidget<MyGUI::Button>("FullscreenCheck")->
40 --- a/Main.cpp 2011-02-20 22:48:58.013333336 +0100
41 +++ b/Main.cpp 2011-02-20 22:49:11.360000003 +0100
42 @@ -8,7 +8,7 @@
43 #include "StaticGameObject.h"
44 #include "Audio.h"
45 #include "resource.h"
47 +#include <OgreStringVector.h>
48 /*-----------------------------------------------------------------------------------------------*/
50 // Static variable definitions
51 @@ -68,7 +68,7 @@
52 REGISTER_CALLBACK(eRestartGame, Application::restartGame);
53 GameObject::resetIDCounter();
55 - std::vector<std::string> lLoadedResourceGroups;
56 + Ogre::StringVector lLoadedResourceGroups;
58 Ogre::ParticleSystemManager::getSingleton().removeAllTemplates();
59 Ogre::ResourceGroupManager::getSingleton().destroyResourceGroup("MinimapGroup");