| Summary: | Xbomber-101 Segfaults on selection options | ||
|---|---|---|---|
| Product: | Gentoo Linux | Reporter: | David Pyke <gentoo-bugs> |
| Component: | [OLD] Games | Assignee: | AMD64 Project <amd64> |
| Status: | RESOLVED FIXED | ||
| Severity: | normal | ||
| Priority: | High | ||
| Version: | 2005.0 | ||
| Hardware: | AMD64 | ||
| OS: | Linux | ||
| Whiteboard: | |||
| Package list: | Runtime testing required: | --- | |
| Attachments: | Fixes vsprintf statement | ||
|
Description
David Pyke
2005-10-10 06:27:06 UTC
dont waste our time filing bugs for packages which arent even KEYWORDed on your architecture 10 Oct 2005; Luis Medinas (metalgod) xbomber-101.ebuild: Added ~amd64 keyword. We're not supposed to report bugs on things keyworded for testing? ... amd64 team... can you verify that this package actually works for you, as you added the keywords... sorry, my tree was out of date, it didnt have an amd64 KEYWORD ;) Created attachment 70324 [details, diff]
Fixes vsprintf statement
Sorry, I apologize, I asked for marking ~amd64 testing just the game and not
the settings - this is a patch that fixes the crash.
Comment on attachment 70324 [details, diff]
Fixes vsprintf statement
*sigh* Fixes the crash for options menu, but won't save config info... so
nevermind =/
Ok, here are two things to do:
a) Fix the segfault. This is easily done by using correct arguments for all
vsprintf calls in the source. Patch already in Portage.
b) Fix the "Remap Movement Keys" thing. Undoable, as it isn't coded yet (it
seems). Have a look at the menu code from domode0() function in bomber.c:
additem("EXIT GAME");
additem("START SINGLE PLAYER GAME");
additem("SINGLE PLAYER OPTIONS");
additem("REMAP MOVEMENT KEYS");
additem("START NETWORK GAME");
additem("JOIN NETWORK GAME");
sel=domenu(0);
if(!sel) {exitflag=1;break;}
if(sel==1) {gamemode=1;break;}
if(sel==2) {gamemode=2;break;}
if(sel==4) {gamemode=3;break;}
if(sel==5) {gamemode=4;break;}
'sel' corresponds to the selection, and there is no item for sel==3, which would
be the remap item.
Games: Is there any active upstream for this? If yes, can you guys relay the patch?
|