diff --git a/Project/Tutorial01/Tutorial01.cpp b/Project/Tutorial01/Tutorial01.cpp index 30de215..d5d040a 100644 --- a/Project/Tutorial01/Tutorial01.cpp +++ b/Project/Tutorial01/Tutorial01.cpp @@ -78,8 +78,8 @@ namespace Tutorial { #define VK_EXPORTED_FUNCTION( fun ) \ if( !(fun = (PFN_##fun)LoadProcAddress( VulkanLibrary, #fun )) ) { \ - printf( "Could not load exported function: " #fun "!\n" ); \ - return false; \ + printf( "Could not load exported function: " #fun "!\n" ); \ + return false; \ } #include "ListOfFunctions.inl" diff --git a/Project/Tutorial04/Tutorial04.cpp b/Project/Tutorial04/Tutorial04.cpp index e8e7471..1eff721 100644 --- a/Project/Tutorial04/Tutorial04.cpp +++ b/Project/Tutorial04/Tutorial04.cpp @@ -133,7 +133,7 @@ namespace Tutorial { i // uint32_t memoryTypeIndex }; - if( vkAllocateMemory( GetDevice( ), &memory_allocate_info, nullptr, memory ) == VK_SUCCESS ) { + if( vkAllocateMemory( GetDevice(), &memory_allocate_info, nullptr, memory ) == VK_SUCCESS ) { return true; } }