summaryrefslogtreecommitdiffstats
path: root/NativeApp/src/Linux/LinuxMain.cpp
diff options
context:
space:
mode:
authorassiduous <assiduous@diligentgraphics.com>2020-01-15 00:08:01 +0000
committerassiduous <assiduous@diligentgraphics.com>2020-01-15 00:08:01 +0000
commita0ee3fab1ed1058630f646f6222b67da9768639c (patch)
treea7561f96da97a81158908a5f8807b29c896f193a /NativeApp/src/Linux/LinuxMain.cpp
parentUpdated copyright notice on iOS launch screen (diff)
downloadDiligentTools-a0ee3fab1ed1058630f646f6222b67da9768639c.tar.gz
DiligentTools-a0ee3fab1ed1058630f646f6222b67da9768639c.zip
Linux native app: fixed return code
Diffstat (limited to 'NativeApp/src/Linux/LinuxMain.cpp')
-rw-r--r--NativeApp/src/Linux/LinuxMain.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/NativeApp/src/Linux/LinuxMain.cpp b/NativeApp/src/Linux/LinuxMain.cpp
index b5882bb..dec0c92 100644
--- a/NativeApp/src/Linux/LinuxMain.cpp
+++ b/NativeApp/src/Linux/LinuxMain.cpp
@@ -487,6 +487,8 @@ int x_main()
glXDestroyContext(display, ctx);
XDestroyWindow(display, win);
XCloseDisplay(display);
+
+ return 0;
}
int main(int argc, char** argv)