summarylogtreecommitdiffstats
path: root/jeopardy.cpp.patch
diff options
context:
space:
mode:
Diffstat (limited to 'jeopardy.cpp.patch')
-rw-r--r--jeopardy.cpp.patch29
1 files changed, 29 insertions, 0 deletions
diff --git a/jeopardy.cpp.patch b/jeopardy.cpp.patch
new file mode 100644
index 000000000000..7e81b9fc69b4
--- /dev/null
+++ b/jeopardy.cpp.patch
@@ -0,0 +1,29 @@
+--- jeopardy.cpp 2012-08-06 22:56:30.000000000 +0200
++++ jeopardy.cpp.new 2015-03-29 14:39:54.657201454 +0200
+@@ -99,7 +99,7 @@
+
+ if(this->sound)
+ {
+- this->music = Phonon::createPlayer(Phonon::NoCategory, Phonon::MediaSource("sound/title.ogg"));
++ this->music = Phonon::createPlayer(Phonon::NoCategory, Phonon::MediaSource("/usr/share/jeopardy/sound/title.ogg"));
+ this->music->play();
+ }
+
+@@ -159,7 +159,7 @@
+ QDir dir;
+ QFile *file;
+
+- this->fileString = QString("answers/%1.jrf").arg(this->round);
++ this->fileString = QString("/usr/share/jeopardy/answers/%1.jrf").arg(this->round);
+ this->fileString = dir.absoluteFilePath(this->fileString);
+
+ file = new QFile(this->fileString);
+@@ -168,7 +168,7 @@
+ {
+ QMessageBox::critical(this, tr("Error"), tr("Could not open round file, please select one by yourself"));
+
+- this->fileString = QFileDialog::getOpenFileName(this, tr("Open File"), "answers/", tr("Jeopardy Round File (*.jrf)"));
++ this->fileString = QFileDialog::getOpenFileName(this, tr("Open File"), "/usr/share/jeopardy/answers/", tr("Jeopardy Round File (*.jrf)"));
+ this->fileString = dir.absoluteFilePath(this->fileString);
+ file = new QFile(this->fileString);
+