Fix Travis whining.
This commit is contained in:
parent
896ac4a682
commit
86d2c9ae1e
|
@ -18,7 +18,8 @@ namespace xe {
|
||||||
|
|
||||||
// These functions are modeled off of the Apple OSAtomic routines
|
// These functions are modeled off of the Apple OSAtomic routines
|
||||||
// https://developer.apple.com/documentation/kernel/osatomic_h (?)
|
// https://developer.apple.com/documentation/kernel/osatomic_h (?)
|
||||||
// Original link (dead): https://developer.apple.com/library/mac/#documentation/DriversKernelHardware/Reference/libkern_ref/OSAtomic_h/
|
// Original link (dead):
|
||||||
|
// https://developer.apple.com/library/mac/#documentation/DriversKernelHardware/Reference/libkern_ref/OSAtomic_h/
|
||||||
|
|
||||||
#if XE_PLATFORM_MAC
|
#if XE_PLATFORM_MAC
|
||||||
|
|
||||||
|
|
|
@ -19,7 +19,8 @@
|
||||||
// NOTE: ordering matters here as sometimes multiple flags are defined on
|
// NOTE: ordering matters here as sometimes multiple flags are defined on
|
||||||
// certain platforms.
|
// certain platforms.
|
||||||
//
|
//
|
||||||
// Great resource on predefined macros: https://sourceforge.net/p/predef/wiki/OperatingSystems/
|
// Great resource on predefined macros:
|
||||||
|
// https://sourceforge.net/p/predef/wiki/OperatingSystems/
|
||||||
// Original link: https://predef.sourceforge.net/preos.html
|
// Original link: https://predef.sourceforge.net/preos.html
|
||||||
|
|
||||||
#if defined(__APPLE__)
|
#if defined(__APPLE__)
|
||||||
|
|
|
@ -332,7 +332,8 @@ DECLARE_XBOXKRNL_EXPORT1(RtlImageXexHeaderField, kNone, kImplemented);
|
||||||
// into guest memory, as it should be opaque and so long as our size is right
|
// into guest memory, as it should be opaque and so long as our size is right
|
||||||
// the user code will never know.
|
// the user code will never know.
|
||||||
//
|
//
|
||||||
// Ref: https://web.archive.org/web/20161214022602/https://msdn.microsoft.com/en-us/magazine/cc164040.aspx
|
// Ref:
|
||||||
|
// https://web.archive.org/web/20161214022602/https://msdn.microsoft.com/en-us/magazine/cc164040.aspx
|
||||||
// Ref:
|
// Ref:
|
||||||
// https://github.com/reactos/reactos/blob/master/sdk/lib/rtl/critical.c
|
// https://github.com/reactos/reactos/blob/master/sdk/lib/rtl/critical.c
|
||||||
|
|
||||||
|
|
|
@ -34,8 +34,8 @@ std::unique_ptr<VulkanProvider> VulkanProvider::Create(Window* main_window) {
|
||||||
"Ensure you have the latest drivers for your GPU and that it "
|
"Ensure you have the latest drivers for your GPU and that it "
|
||||||
"supports Vulkan.\n"
|
"supports Vulkan.\n"
|
||||||
"\n"
|
"\n"
|
||||||
"See https://xenia.jp/faq/ for more information and a list of supported "
|
"See https://xenia.jp/faq/ for more information and a list of "
|
||||||
"GPUs.");
|
"supported GPUs.");
|
||||||
return nullptr;
|
return nullptr;
|
||||||
}
|
}
|
||||||
return provider;
|
return provider;
|
||||||
|
|
Loading…
Reference in New Issue