diff options
| author | Egor Yusov <egor.yusov@gmail.com> | 2019-08-03 15:47:47 +0000 |
|---|---|---|
| committer | Egor Yusov <egor.yusov@gmail.com> | 2019-08-03 15:47:47 +0000 |
| commit | 030cbb3db06c3361e3a5dcfd8dc94ee2231531b6 (patch) | |
| tree | dd644c3b7e13d3960005f41578ea8a73035859cf /Common/NativeApp | |
| parent | Updated core (fixed https://github.com/DiligentGraphics/DiligentEngine/issues... (diff) | |
| download | DiligentEngine-030cbb3db06c3361e3a5dcfd8dc94ee2231531b6.tar.gz DiligentEngine-030cbb3db06c3361e3a5dcfd8dc94ee2231531b6.zip | |
Fixed https://github.com/DiligentGraphics/DiligentCore/issues/95
Diffstat (limited to 'Common/NativeApp')
| -rw-r--r-- | Common/NativeApp/src/Linux/LinuxMain.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Common/NativeApp/src/Linux/LinuxMain.cpp b/Common/NativeApp/src/Linux/LinuxMain.cpp index 3e08fc5..381737c 100644 --- a/Common/NativeApp/src/Linux/LinuxMain.cpp +++ b/Common/NativeApp/src/Linux/LinuxMain.cpp @@ -434,7 +434,7 @@ int main (int argc, char ** argv) {
bool UseVulkan = false;
-#ifdef VULKAN_SUPPORTED
+#if VULKAN_SUPPORTED
UseVulkan = true;
if (argc > 1)
{
@@ -467,4 +467,4 @@ int main (int argc, char ** argv) #endif
return x_main();
-}
\ No newline at end of file +}
|
