diff options
| author | assiduous <assiduous@diligentgraphics.com> | 2020-01-15 00:08:01 +0000 |
|---|---|---|
| committer | assiduous <assiduous@diligentgraphics.com> | 2020-01-15 00:08:01 +0000 |
| commit | a0ee3fab1ed1058630f646f6222b67da9768639c (patch) | |
| tree | a7561f96da97a81158908a5f8807b29c896f193a /NativeApp/src/Linux/LinuxMain.cpp | |
| parent | Updated copyright notice on iOS launch screen (diff) | |
| download | DiligentTools-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.cpp | 2 |
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) |
