summaryrefslogtreecommitdiff
path: root/examples/hello-world/vulkan-api.h
diff options
context:
space:
mode:
Diffstat (limited to 'examples/hello-world/vulkan-api.h')
-rw-r--r--examples/hello-world/vulkan-api.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/examples/hello-world/vulkan-api.h b/examples/hello-world/vulkan-api.h
index 89ca9747d..ab0822569 100644
--- a/examples/hello-world/vulkan-api.h
+++ b/examples/hello-world/vulkan-api.h
@@ -121,12 +121,12 @@ struct VulkanAPI
};
#define RETURN_ON_FAIL(x) \
- { \
- auto _res = x; \
- if (_res != 0) \
- { \
- return -1; \
- } \
+ { \
+ auto _res = x; \
+ if (_res != 0) \
+ { \
+ return -1; \
+ } \
}
// Loads Vulkan library and creates a VkDevice.