90 lines
3.5 KiB
Diff
90 lines
3.5 KiB
Diff
diff -Nru anagramarama.orig/src/ag.c anagramarama/src/ag.c
|
|
--- anagramarama.orig/src/ag.c 2005-07-20 12:47:54.000000000 +0200
|
|
+++ anagramarama/src/ag.c 2005-07-20 14:27:32.000000000 +0200
|
|
@@ -184,15 +184,15 @@
|
|
***********************************************************/
|
|
void bufferSounds(struct sound** soundCache){
|
|
|
|
- pushSound(&(*soundCache),"click-answer", "audio/click-answer.wav");
|
|
- pushSound(&(*soundCache),"click-shuffle", "audio/click-shuffle.wav");
|
|
- pushSound(&(*soundCache),"foundbig", "audio/foundbig.wav");
|
|
- pushSound(&(*soundCache),"found", "audio/found.wav");
|
|
- pushSound(&(*soundCache),"clear", "audio/clearword.wav");
|
|
- pushSound(&(*soundCache),"duplicate", "audio/duplicate.wav");
|
|
- pushSound(&(*soundCache),"badword", "audio/badword.wav");
|
|
- pushSound(&(*soundCache),"shuffle", "audio/shuffle.wav");
|
|
- pushSound(&(*soundCache),"clock-tick", "audio/clock-tick.wav");
|
|
+ pushSound(&(*soundCache),"click-answer", "/usr/share/anagramarama-0.2/audio/click-answer.wav");
|
|
+ pushSound(&(*soundCache),"click-shuffle", "/usr/share/anagramarama-0.2/audio/click-shuffle.wav");
|
|
+ pushSound(&(*soundCache),"foundbig", "/usr/share/anagramarama-0.2/audio/foundbig.wav");
|
|
+ pushSound(&(*soundCache),"found", "/usr/share/anagramarama-0.2/audio/found.wav");
|
|
+ pushSound(&(*soundCache),"clear", "/usr/share/anagramarama-0.2/audio/clearword.wav");
|
|
+ pushSound(&(*soundCache),"duplicate", "/usr/share/anagramarama-0.2/audio/duplicate.wav");
|
|
+ pushSound(&(*soundCache),"badword", "/usr/share/anagramarama-0.2/audio/badword.wav");
|
|
+ pushSound(&(*soundCache),"shuffle", "/usr/share/anagramarama-0.2/audio/shuffle.wav");
|
|
+ pushSound(&(*soundCache),"clock-tick", "/usr/share/anagramarama-0.2/audio/clock-tick.wav");
|
|
|
|
}
|
|
|
|
@@ -982,7 +982,7 @@
|
|
int done = 0;
|
|
|
|
filelocation = rand()%10000;
|
|
- wordlist=fopen("wordlist.txt","r");
|
|
+ wordlist=fopen("/usr/share/anagramarama-0.2/wordlist.txt","r");
|
|
|
|
for (i=0;i<=filelocation;i++){
|
|
|
|
@@ -992,7 +992,7 @@
|
|
else{
|
|
// go back to the start of the file
|
|
fclose(wordlist);
|
|
- fopen("wordlist.txt", "r");
|
|
+ fopen("/usr/share/anagramarama-0.2/wordlist.txt", "r");
|
|
}
|
|
}
|
|
|
|
@@ -1011,7 +1011,7 @@
|
|
else{
|
|
// go back to the start of the file
|
|
fclose(wordlist);
|
|
- fopen("wordlist.txt", "r");
|
|
+ fopen("/usr/share/anagramarama-0.2/wordlist.txt", "r");
|
|
fscanf(wordlist, "%s", wordFromList);
|
|
}
|
|
}
|
|
@@ -1485,7 +1485,7 @@
|
|
int i;
|
|
|
|
// show background
|
|
- ShowBMP("images/background.bmp",screen, 0,0);
|
|
+ ShowBMP("/usr/share/anagramarama-0.2/images/background.bmp",screen, 0,0);
|
|
|
|
destroyLetters(&(*letters));
|
|
|
|
@@ -1760,9 +1760,9 @@
|
|
createDLBTree(&dlbHead);
|
|
|
|
// cache in-game graphics
|
|
- letterBank = SDL_LoadBMP("images/letterBank.bmp");
|
|
- smallLetterBank = SDL_LoadBMP("images/smallLetterBank.bmp");
|
|
- numberBank = SDL_LoadBMP("images/numberBank.bmp");
|
|
+ letterBank = SDL_LoadBMP("/usr/share/anagramarama-0.2/images/letterBank.bmp");
|
|
+ smallLetterBank = SDL_LoadBMP("/usr/share/anagramarama-0.2/images/smallLetterBank.bmp");
|
|
+ numberBank = SDL_LoadBMP("/usr/share/anagramarama-0.2/images/numberBank.bmp");
|
|
|
|
rootWord = malloc(sizeof(char)*9);
|
|
newGame(&head, dlbHead, screen, &letters);
|
|
diff -Nru anagramarama.orig/src/dlb.c anagramarama/src/dlb.c
|
|
--- anagramarama.orig/src/dlb.c 2005-07-20 12:47:54.000000000 +0200
|
|
+++ anagramarama/src/dlb.c 2005-07-20 14:27:32.000000000 +0200
|
|
@@ -100,7 +100,7 @@
|
|
//printf("createDLBTree\n");
|
|
|
|
// open wordlist file
|
|
- wordlist = fopen("wordlist.txt", "r");
|
|
+ wordlist = fopen("/usr/share/anagramarama-0.2/wordlist.txt", "r");
|
|
|
|
// get each word from the list
|
|
while (fscanf(wordlist, "%s", wordFromList) != EOF){
|