Project

General

Profile

« Previous | Next » 

Revision 2aeb75aa

Added by Leszek Koltunski almost 4 years ago

Update Myanmar flag.

View differences:

src/main/java/org/distorted/library/effect/Effect.java
48 48
  private final static float[] mUnity= new float[MAX_UNITY_DIM*NUM_EFFECTS];
49 49
  private final static int[]   mUnityDim = new int[NUM_EFFECTS];
50 50

  
51
  int mAssociation;
52
  int mComponent;
51
  int mAndAssociation;
52
  int mEquAssociation;
53 53

  
54 54
  static boolean[] mEnabled = new boolean[NUM_EFFECTS];
55 55

  
......
68 68
    mCenterDim = name.getCenterDimension();
69 69
    mRegionDim = name.getRegionDimension();
70 70

  
71
    mAssociation = 0xffffffff;
72
    mComponent   = 0;
71
    mAndAssociation = 0xffffffff;
72
    mEquAssociation = 0;
73 73

  
74 74
    int n = name.ordinal();
75 75
    float[] u = name.getUnity();
......
142 142
 *
143 143
 * @y.exclude
144 144
 */
145
  public int getAssociation()
145
  public int getAndAssociation()
146 146
    {
147
    return mAssociation;
147
    return mAndAssociation;
148 148
    }
149 149

  
150 150
///////////////////////////////////////////////////////////////////////////////////////////////////
......
153 153
 *
154 154
 * @y.exclude
155 155
 */
156
  public int getComponent()
156
  public int getEquAssociation()
157 157
    {
158
    return mComponent;
158
    return mEquAssociation;
159 159
    }
160 160

  
161 161
///////////////////////////////////////////////////////////////////////////////////////////////////

Also available in: Unified diff