[gbrainy/stable] Fixes bugzilla #663259
- From: Jordi Mas <jmas src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gbrainy/stable] Fixes bugzilla #663259
- Date: Sun, 6 Nov 2011 15:41:22 +0000 (UTC)
commit 813807b527493f5402dd2b6ea060b3e6f2081d3e
Author: Jordi Mas <jmas softcatala org>
Date: Sun Nov 6 16:41:20 2011 +0100
Fixes bugzilla #663259
src/Games/Logic/PuzzleTrains.cs | 9 +++++++--
1 files changed, 7 insertions(+), 2 deletions(-)
---
diff --git a/src/Games/Logic/PuzzleTrains.cs b/src/Games/Logic/PuzzleTrains.cs
index a8c5722..b9e0161 100644
--- a/src/Games/Logic/PuzzleTrains.cs
+++ b/src/Games/Logic/PuzzleTrains.cs
@@ -28,7 +28,9 @@ namespace gbrainy.Games.Logic
{
enum GameType
{
- Overtake,
+#if _DISABLED___FOR_663259
+ //Overtake - Temporary removed as part of fixing #663259 in stable
+#endif
Meet,
Apart,
Total
@@ -62,6 +64,7 @@ namespace gbrainy.Games.Logic
switch (gametype)
{
+#if _DISABLED___FOR_663259
case GameType.Overtake:
{
double hours;
@@ -86,6 +89,7 @@ namespace gbrainy.Games.Logic
answer = ServiceLocator.Instance.GetService <ITranslations> ().GetString ("You can calculate the answer by multiplying the speed of the first train by the time and dividing it by the difference of speeds.");
break;
}
+#endif
case GameType.Meet:
{
double distance, hours;
@@ -146,6 +150,7 @@ namespace gbrainy.Games.Logic
switch (gametype)
{
+#if _DISABLED___FOR_663259
case GameType.Overtake:
gr.DrawImageFromAssembly (train_right, 0, 0.1, 0.5, 0.55);
gr.MoveTo (0.1, 0.45);
@@ -154,7 +159,7 @@ namespace gbrainy.Games.Logic
gr.DrawImageFromAssembly (train_right, 0.5, 0.1, 0.5, 0.55);
break;
-
+#endif
case GameType.Meet:
gr.DrawImageFromAssembly (train_right, 0, 0.1, 0.5, 0.55);
gr.MoveTo (0.1, 0.45);
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]