mirror of
https://github.com/yuzu-emu/citra-qt-installer.git
synced 2024-11-21 22:45:39 +01:00
15 lines
382 B
Plaintext
15 lines
382 B
Plaintext
function Component() {
|
|
if (systemInfo.kernelType === "darwin") {
|
|
component.setValue("Virtual", "false");
|
|
component.setValue("Default", "false"); // bleeding
|
|
} else {
|
|
component.setValue("Virtual", "true");
|
|
component.setValue("Enabled", "false");
|
|
}
|
|
}
|
|
|
|
Component.prototype.createOperations = function()
|
|
{
|
|
component.createOperations();
|
|
}
|