IMAGE_REL_M32R_PCREL24 0x0005 The target's 24-bit offset from the program counter (PC), shifted left by 2 bits and sign-extended IMAGE_REL_M32R_PCREL16 0x0006 The target's 16-bit offset from the PC, shifted left by 2 bits and sign-extended IMAGE_REL_M32R_PCREL8 0x0007 The ...
int xPos = 0; int yPos = 0; int lightCounter = 0; Brush brush; // Draw the top row of lights. for (int i = 0; i < horizontalLights; i++) { brush = IsLit(lightCounter) ? this.lightBrush : this.darkBrush; DrawLight(g, brush, xPos, yPos); xPos += increment; lightC...