Code: Select all
games::35:userOr, more simply, use the 'usermod' command line app:OddFox wrote:To add yourself to the games group, as root, find a line similar to this one in your /etc/group file:
If there is no games:: line, simply add it. Make sure to substitute "user" with your usernames you want to allow to play games.Code: Select all
games::35:user
Code: Select all
# man usermond...on their page.Now you are ready to play. Type
> adonthell wastesedge
to dive into the game.

Code: Select all
Gentux / $ adonthell wastesedge
Erreur de segmentationCode: Select all
Hello,
Finally I got it.
This is caused by #374062.
This patch is a workaround for that bug. I'm not sure that using bg as
last argument is the best choice, however it works.
--- adonthell-0.3.4.cvs.20050813/src/win_ttf.cc 2004-12-13 09:56:58.000000000 +0100
+++ adonthell-0.3.4.cvs.20050813.jd/src/win_ttf.cc 2006-08-09 16:41:00.000000000 +0200
@@ -137,7 +137,7 @@
if (s == NULL) return *(glyphs[' ']);
image tmp (s, bg);
- image shadow (TTF_RenderUNICODE_Solid (ttf, unichar, bg), white);
+ image shadow (TTF_RenderUNICODE_Shaded (ttf, unichar, bg, bg), white);
image *glph = new image (tmp.length(), height_, false);
glph->fillrect (0, 0, tmp.length()+1, height_+1, screen::trans_col(), NULL);
shadow.draw (1, 1+height_-shadow.height(), 0, 0, shadow.length(), shadow.height(), NULL, glph);
Code: Select all
image shadow (TTF_RenderUNICODE_Solid (ttf, unichar, bg), white);Code: Select all
image shadow (TTF_RenderUNICODE_Shaded (ttf, unichar, bg, bg), white);