Glad that helped you Draycho. Enjoy the game.
This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
Show posts MenuQuote from: Draycho on December 20, 2013, 03:08:34 PM
Hello, today i tried to install the new Additional content pack for MLK but i ran into a problem during the installation: when i need to choose the directory where the core game is installed i choose it and press update. after this it gives me an error report:
"Specified install directory exists...
USDX Binary exists in patch directory...
Please run the updater from the My Little Karaoke disc."
what am i doing wrong??
Quote from: PsychicWalnut on December 21, 2013, 02:33:41 PM
Yeah, I had a similar experience...
Then I realized that the default install directory listed wasn't correct for my system.
Vista-32 doesn't exactly have a 'Program Files (x86)' folder, ya know.
Be sure you select the correct install folder for your installation, and it should be fine.
// Get update path
if(ui->installDir->toPlainText() == "C:\\Program Files (x86)\\MyLittleKaraoke") {
QDir x86Dir("C:\\Program Files (x86)");
if(!x86Dir.exists()) {
ui->outputLog->appendPlainText("You are probably using a 32-bit version of Windows, trying 32-bit install directory instead.");
ui->installDir->setHtml("C:\\Program Files\\MyLittleKaraoke");
}
}