Merge pull request #1993 from acemod/fixMapCompassChange

Fix ace_map changes to compass display object
This commit is contained in:
PabstMirror 2015-08-14 19:34:09 -05:00
commit 6932014b9d

View File

@ -125,13 +125,6 @@ class RscDisplayDiary {
};
};
};
// scale up the compass
class objects {
class Compass: RscObject {
scale = 0.7;
zoomDuration = 0;
};
};
};
// BRIEFING SCREEN
@ -149,13 +142,6 @@ class RscDisplayGetReady: RscDisplayMainMap {
#include "MapControls.hpp"
};
};
// scale up the compass
class objects {
class Compass: RscObject {
scale = 0.7;
zoomDuration = 0;
};
};
};
class RscDisplayClientGetReady: RscDisplayGetReady {
// get rid of the "center to player position" - button (as it works even on elite)
@ -164,13 +150,6 @@ class RscDisplayClientGetReady: RscDisplayGetReady {
#include "MapControls.hpp"
};
};
// scale up the compass
class objects {
class Compass: RscObject {
scale = 0.7;
zoomDuration = 0;
};
};
};
class RscDisplayServerGetReady: RscDisplayGetReady {
// get rid of the "center to player position" - button (as it works even on elite)
@ -179,11 +158,4 @@ class RscDisplayServerGetReady: RscDisplayGetReady {
#include "MapControls.hpp"
};
};
// scale up the compass
class objects {
class Compass: RscObject {
scale = 0.7;
zoomDuration = 0;
};
};
};