mirror of
https://github.com/yuzu-emu/yuzu-emu.github.io.git
synced 2025-06-08 13:27:25 +00:00
Removed refs to macOS (#60)
This commit is contained in:
parent
dd124bac3f
commit
d9cd08460c
|
@ -15,7 +15,14 @@
|
||||||
<div class="content">
|
<div class="content">
|
||||||
{{ .Content }}
|
{{ .Content }}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
|
||||||
|
<article class="message has-text-weight-semibold">
|
||||||
|
<div class="message-body">
|
||||||
|
<p>Note: Mac OS is no longer supported due to Apple deprecating OpenGL
|
||||||
|
and their current version not supporting the OpenGL extensions we require.</p>
|
||||||
|
<a href="https://www.anandtech.com/show/12894/apple-deprecates-opengl-across-all-oses">Source</a>
|
||||||
|
</div>
|
||||||
|
</article>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
<!-- Advertisement -->
|
<!-- Advertisement -->
|
||||||
|
@ -40,7 +47,7 @@
|
||||||
<div id="install-view">
|
<div id="install-view">
|
||||||
<article class="message is-danger" id="platform-unsupported">
|
<article class="message is-danger" id="platform-unsupported">
|
||||||
<div class="message-body has-text-white">
|
<div class="message-body has-text-white">
|
||||||
yuzu doesn't support your platform. If you are running Windows x64, Mac x64 or Linux x64 however,
|
yuzu doesn't support your platform. If you are running Windows x64 or Linux x64 however,
|
||||||
choose one of the options below.
|
choose one of the options below.
|
||||||
</div>
|
</div>
|
||||||
</article>
|
</article>
|
||||||
|
@ -122,9 +129,9 @@
|
||||||
|
|
||||||
// Attempt autodetection of their operating system
|
// Attempt autodetection of their operating system
|
||||||
var userAgent = navigator.userAgent.toLowerCase();
|
var userAgent = navigator.userAgent.toLowerCase();
|
||||||
|
|
||||||
var allPlatforms = ["windows", "mac", "linux"];
|
var allPlatforms = ["windows", "mac", "linux"];
|
||||||
|
|
||||||
var os = "Other";
|
var os = "Other";
|
||||||
if (userAgent.indexOf("windows") !== -1) {
|
if (userAgent.indexOf("windows") !== -1) {
|
||||||
os = "Windows";
|
os = "Windows";
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
<h2 class="title">{{ .Site.Params.Tagline }}</h2>
|
<h2 class="title">{{ .Site.Params.Tagline }}</h2>
|
||||||
<div class="content">
|
<div class="content">
|
||||||
<p>yuzu is an experimental open-source emulator for the Nintendo Switch from the creators of Citra.</p>
|
<p>yuzu is an experimental open-source emulator for the Nintendo Switch from the creators of Citra.</p>
|
||||||
<p>It is written in C++ with portability in mind, with builds actively maintained for Windows, Linux and macOS.</p>
|
<p>It is written in C++ with portability in mind, with builds actively maintained for Windows and Linux.</p>
|
||||||
</div>
|
</div>
|
||||||
<div>
|
<div>
|
||||||
<a class="button mr-sm is-medium is-light is-hidden-touch" href="/downloads">
|
<a class="button mr-sm is-medium is-light is-hidden-touch" href="/downloads">
|
||||||
|
|
Loading…
Reference in a new issue