summarylogtreecommitdiffstats
path: root/jeopardy.cpp.patch
diff options
context:
space:
mode:
authorMichal Wojdyla2021-07-19 03:56:04 +0200
committerMichal Wojdyla2021-07-19 03:56:04 +0200
commit8a4f031ec2472e6d5859b13a14ccc29207275ce0 (patch)
tree2cd252551531d550287b41b3740c82e0943a0275 /jeopardy.cpp.patch
parent03cd10bd22d629a70c96f9a2db73dce42d30bca2 (diff)
downloadaur-jeopardy.tar.gz
update to 0.9.7
Diffstat (limited to 'jeopardy.cpp.patch')
-rw-r--r--jeopardy.cpp.patch29
1 files changed, 0 insertions, 29 deletions
diff --git a/jeopardy.cpp.patch b/jeopardy.cpp.patch
deleted file mode 100644
index 7e81b9fc69b4..000000000000
--- a/jeopardy.cpp.patch
+++ /dev/null
@@ -1,29 +0,0 @@
---- 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);
-