Skip to content

Commit

Permalink
Bug fixes and modal changes
Browse files Browse the repository at this point in the history
  • Loading branch information
jonbarrow committed Nov 14, 2017
1 parent c2061bf commit cc307b1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions app.js
Original file line number Diff line number Diff line change
Expand Up @@ -2146,12 +2146,12 @@ function checkSystem(cb) {
detail: 'CemUI has detected an Intel GPU. Cemu does not currently support Intel GPUs. You will experience many bugs and glitches using Cemu'
});
}
if (os.platform() != 'Windows_NT') {
if (os.type() != 'Windows_NT') {
dialog.showMessageBox(ApplicationWindow, {
type: 'warning',
title: 'Warning',
message: 'Unsupported OS',
detail: 'CemUI, and Cemu, only offically supports Windows machines. We have detected you running on ' + os.platform() + '. Some features may not work properly'
detail: 'CemUI, and Cemu, only offically supports Windows machines. We have detected you running on ' + os.type() + '. Some features may not work properly'
});
}
return cb();
Expand Down
2 changes: 1 addition & 1 deletion app/wrapper/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,7 @@ <h1 class="txt-font-smm txt-s-48">Database</h1>
<div class="popup">
<h2 class="title">Missing CDecrypt</h2>
<div class="content">
It seems like CDecrypt is missing, You need to install CDecrypt for the games to be decrypted. After you have done that you have to specify where you installed it.
It seems like CDecrypt is missing. You need to download CDecrypt for the games to be decrypted. Due to legal reasons CemUI cannot decrypt the games. To obtain a copy of CDecrypt, visit this website <a href="https://filetrip.net/dl?GRqLr9jHRT" target="_blank">https://filetrip.net/dl?GRqLr9jHRT</a>
</div>
<div class="button">Select CDecrypt</div>
</div>
Expand Down

0 comments on commit cc307b1

Please sign in to comment.