Tue 07 Mar 2006 09:30:27 PM UTC, comment #6:
"just ran glob2 on my winXP system and didn't have any problems. Reading through what you posted along with the source in campaignscreen.cpp I found that I have different code. I've simply been editing what I downloaded off the website when I first downloaded/compild the game (no current RPM's for fedora yet) and didn't go through CVS. There is no cancel button only a start button on this version so there isn't anything to conflict. I obviously need to get some updated code from CVS."
Ok. I suggest that you download and compile cvs code before making changes, incase something has changed since the release on the website. For eg, code for the networking has changed in places since the release, so the localhost bug you working on might be invalid or not work on cvs code.
Anyway, the post I made below works perfectly. I just need someone to submit it to CVS (nct said something about me checking out as anoncvs instead of my savannah user.... must read up about that and see if I can get it to commit).
|
Tue 07 Mar 2006 09:26:02 PM UTC, comment #5:
Nope. Its not a win32 bug. With a fresh install of glob2's cvs on mandriva linux, I get the same result. Btw, I made a mistake in the fix. Heres the correct instuctions (it fixes mandriva problem too):
Open src/CampaignScreen.cpp, find:
addWidget(new TextButton(20, 55, 70, 25, ALIGN_RIGHT, ALIGN_BOTTOM, "", -1, -1, "standard", Toolkit::getStringTable()->getString("[Start]"), 0, '\r'));
addWidget(new TextButton(20, 20, 70, 25, ALIGN_RIGHT, ALIGN_BOTTOM, "", -1, -1, "standard", Toolkit::getStringTable()->getString("[Cancel]"), 1, 27));
And replace with:
addWidget(new TextButton(20, 20, 70, 25, ALIGN_RIGHT, ALIGN_BOTTOM, "", -1, -1, "standard", Toolkit::getStringTable()->getString("[Start]"), 0, '\r'));
addWidget(new TextButton(20, 20, 70, 25, ALIGN_LEFT, ALIGN_BOTTOM, "", -1, -1, "standard", Toolkit::getStringTable()->getString("[Cancel]"), 1, 27));
|
Tue 07 Mar 2006 07:16:21 AM UTC, comment #1:
This is in CVS btw. I know how to fix it too. Open src/CampaignScreen.cpp, find:
addWidget(new TextButton(20, 20, 70, 25, ALIGN_RIGHT, ALIGN_BOTTOM, "", -1, -1, "standard", Toolkit::getStringTable()->getString("[Cancel]"), 1, 27));
And replace with:
addWidget(new TextButton(20, 55, 70, 25, ALIGN_LEFT, ALIGN_BOTTOM, "", -1, -1, "standard", Toolkit::getStringTable()->getString("[Cancel]"), 1, 27));
Id do it myself, but I dont have cvs access (or if I do, I dont know why I can't commit anything) :(
|