Skip to content

Commit fddc3ce

Browse files
committed
Fixed scroll bars appearing for some users, fixed XAnim flushing
1 parent bd29fb1 commit fddc3ce

3 files changed

Lines changed: 2 additions & 4 deletions

File tree

ManyPacker/assets.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -373,6 +373,7 @@ namespace ManyPacker
373373
ManyPacker::Utils::AdditionalAssets.clear();
374374
Weapons.clear();
375375
XModels.clear();
376+
XAnims.clear();
376377
Materials.clear();
377378
Images.clear();
378379
}

ManyPacker/defines.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#pragma once
2-
#define MANYPACKER_VERSION "1.0.0"
2+
#define MANYPACKER_VERSION "1.0.1"
33
#define MANYPACKER_NAME "ManyPacker"
44

55
#define MANYPACKER_FULL_NAME MANYPACKER_NAME " " MANYPACKER_VERSION

ManyPacker/main.cpp

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,6 @@ int APIENTRY WinMain(HINSTANCE hInst, HINSTANCE hInstPrev, PSTR cmdline, int cmd
3333
ManyPacker::Prefs::LoadPrefs();
3434
ManyPacker::Utils::updateAssets();
3535

36-
ImGui_ImplWin32_EnableDpiAwareness();
37-
// LoadIcon(GetModuleHandle(nullptr), MAKEINTRESOURCE(IDI_APP_ICON)) check if it loads
38-
3936
HICON hIcon = LoadIcon(hInst, MAKEINTRESOURCE(IDI_APP_ICON));
4037
WNDCLASSEXW wc = { sizeof(wc), CS_CLASSDC, WndProc, 0L, 0L, hInst, hIcon, nullptr, nullptr, nullptr, L"ManyPacker", hIcon };
4138
::RegisterClassExW(&wc);

0 commit comments

Comments
 (0)