citra-qt-installer/repository/scripts/osx-canary.qs
2017-08-19 23:42:53 -04:00

14 lines
382 B
Text

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();
}