Skip to content

Commit

Permalink
Adjust ordering
Browse files Browse the repository at this point in the history
Fixes #1176
  • Loading branch information
SaschaWillems committed Jan 17, 2025
1 parent 27c8c36 commit c69ef9b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion base/VulkanDebug.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,10 @@ namespace vks
std::string prefix;

if (messageSeverity & VK_DEBUG_UTILS_MESSAGE_SEVERITY_VERBOSE_BIT_EXT) {
prefix = "VERBOSE: ";
#if defined(_WIN32)
prefix = "\033[32m" + prefix + "\033[0m";
#endif
prefix = "VERBOSE: ";
}
else if (messageSeverity & VK_DEBUG_UTILS_MESSAGE_SEVERITY_INFO_BIT_EXT) {
prefix = "INFO: ";
Expand Down

0 comments on commit c69ef9b

Please sign in to comment.