[LINT] Fixed lint issues after clang-format update

This commit is contained in:
Gliniak
2024-06-13 20:56:56 +02:00
parent ce990e2828
commit ec267c348a
13 changed files with 21 additions and 28 deletions

View File

@@ -130,7 +130,7 @@ class AchievementNotificationWindow final : ImGuiNotification {
std::string title, std::string description,
uint8_t user_index, uint8_t position_id = 0)
: ImGuiNotification(imgui_drawer, title, description, user_index,
position_id){};
position_id) {};
void OnDraw(ImGuiIO& io) override;
};

View File

@@ -202,8 +202,7 @@ const char* HostExceptionReport::GetFormattedAddress(uintptr_t address) {
size_t search_back = strlen(tmp_module_name);
// hunt backwards for the last sep
while (tmp_module_name[--search_back] != '\\')
;
while (tmp_module_name[--search_back] != '\\');
// MessageBoxA(nullptr, tmp_module_name, "ffds", MB_OK);
sprintf_s(current_buffer, "%s+%llX", tmp_module_name + search_back + 1,