We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
newgamescreen.mdl:
MapTypeNames = ["Single Ring", "Double Ring", "Pinwheel", "Diamond Ring", "Snowflake", "Brawl", "Big Ring", "HiLo", "Star", "InsideOut", "Grid"]; MapTypeValues = [0, 1, 2, 3, 4, 6, 7, 8, 10, 11, 12];
needs to match
IGC/igc.h:
const MapMakerID c_mmSingleRing = 0; const MapMakerID c_mmDoubleRing = 1; const MapMakerID c_mmPinWheel = 2; const MapMakerID c_mmDiamondRing = 3; const MapMakerID c_mmSnowFlake = 4; const MapMakerID c_mmSplitBase = 5; const MapMakerID c_mmBrawl = 6; const MapMakerID c_mmBigRing = 7; const MapMakerID c_mmHiLo = 8; const MapMakerID c_mmHiHigher = 9; const MapMakerID c_mmStar = 10; const MapMakerID c_mmInsideOut = 11; const MapMakerID c_mmGrid = 12; const MapMakerID c_mmEastWest = 13; const MapMakerID c_mmLargeSplit = 14; const MapMakerID c_mmMax = 15;
and IGC/mapmaker.cpp:
switch(pmp->mmMapType) { MakeMap(SingleRing) MakeMap(DoubleRing) MakeMap(PinWheel) MakeMap(DiamondRing) MakeMap(SnowFlake) MakeMap(SplitBase) MakeMap(Brawl) MakeMap(BigRing) MakeMap(HiLo) MakeMap(HiHigher) MakeMap(Star) MakeMap(InsideOut) MakeMap(Grid) MakeMap(EastWest) MakeMap(LargeSplit) default: assert (false); }
Thanks for playing!
The text was updated successfully, but these errors were encountered:
Gah
Sorry, something went wrong.
couple ways to fix this... should we each try?
Merge pull request #20 from FreeAllegiance/updateScore
eeebccf
Update score
Astn
No branches or pull requests
newgamescreen.mdl:
MapTypeNames = ["Single Ring", "Double Ring", "Pinwheel", "Diamond Ring", "Snowflake", "Brawl", "Big Ring", "HiLo", "Star", "InsideOut", "Grid"];
MapTypeValues = [0, 1, 2, 3, 4, 6, 7, 8, 10, 11, 12];
needs to match
IGC/igc.h:
const MapMakerID c_mmSingleRing = 0;
const MapMakerID c_mmDoubleRing = 1;
const MapMakerID c_mmPinWheel = 2;
const MapMakerID c_mmDiamondRing = 3;
const MapMakerID c_mmSnowFlake = 4;
const MapMakerID c_mmSplitBase = 5;
const MapMakerID c_mmBrawl = 6;
const MapMakerID c_mmBigRing = 7;
const MapMakerID c_mmHiLo = 8;
const MapMakerID c_mmHiHigher = 9;
const MapMakerID c_mmStar = 10;
const MapMakerID c_mmInsideOut = 11;
const MapMakerID c_mmGrid = 12;
const MapMakerID c_mmEastWest = 13;
const MapMakerID c_mmLargeSplit = 14;
const MapMakerID c_mmMax = 15;
and IGC/mapmaker.cpp:
Thanks for playing!
The text was updated successfully, but these errors were encountered: