mirror of
https://github.com/PrismLauncher/PrismLauncher.git
synced 2025-06-12 05:07:46 +02:00
Added warning for x86 java
Signed-off-by: Trial97 <alexandru.tripon97@gmail.com>
This commit is contained in:
@ -40,6 +40,7 @@ struct JavaInstall : public BaseVersion {
|
||||
QString arch;
|
||||
QString path;
|
||||
bool recommended = false;
|
||||
bool is_64bit = false;
|
||||
};
|
||||
|
||||
using JavaInstallPtr = std::shared_ptr<JavaInstall>;
|
||||
|
@ -193,6 +193,7 @@ void JavaListLoadTask::javaCheckerFinished()
|
||||
javaVersion->id = result.javaVersion;
|
||||
javaVersion->arch = result.realPlatform;
|
||||
javaVersion->path = result.path;
|
||||
javaVersion->is_64bit = result.is_64bit;
|
||||
candidates.append(javaVersion);
|
||||
|
||||
qDebug() << " " << javaVersion->id.toString() << javaVersion->arch << javaVersion->path;
|
||||
|
Reference in New Issue
Block a user