diff options
| author | Jon Ashburn <jon@lunarg.com> | 2016-01-13 12:55:12 -0700 |
|---|---|---|
| committer | Jon Ashburn <jon@lunarg.com> | 2016-01-13 12:55:12 -0700 |
| commit | 3dc540cbe01ba2f1449b602aaa40c814fd8d637c (patch) | |
| tree | 94875b4a47575e8746cbffd6e0e8270b5188795f | |
| parent | d24d6472633f452fe61fd245d16d4df08fee55fd (diff) | |
| download | usermoji-3dc540cbe01ba2f1449b602aaa40c814fd8d637c.tar.xz | |
demos: Remove the message box dialog for errors in vulkaninfo
| -rw-r--r-- | demos/vulkaninfo.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/demos/vulkaninfo.c b/demos/vulkaninfo.c index 019ca12e..f4c05ab8 100644 --- a/demos/vulkaninfo.c +++ b/demos/vulkaninfo.c @@ -153,12 +153,9 @@ VkBool32 dbg_callback( sprintf(message,"DEBUG: [%s] Code %d : %s", pLayerPrefix, msgCode, pMsg); } -#ifdef _WIN32 - MessageBox(NULL, message, "Alert", MB_OK); -#else + printf("%s\n",message); fflush(stdout); -#endif free(message); /* |
