Skip to content

Commit 897ca49

Browse files
committed
[API] Change natives extract folder
So the folder will be unique for sure
1 parent 39a4398 commit 897ca49

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

imgui-binding/src/main/java/imgui/ImGui.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ public class ImGui {
2222
private static final String LIB_PATH_PROP = "imgui.library.path";
2323
private static final String LIB_NAME_PROP = "imgui.library.name";
2424
private static final String LIB_NAME_DEFAULT = System.getProperty("os.arch").contains("64") ? "imgui-java64" : "imgui-java";
25-
private static final String LIB_TMP_DIR_PREFIX = "imgui-java-bin_" + System.getProperty("user.name", "user");
25+
private static final String LIB_TMP_DIR_PREFIX = "imgui-java-natives_" + System.currentTimeMillis();
2626

2727
private static final ImGuiIO IMGUI_IO;
2828
private static final ImDrawList WINDOW_DRAW_LIST;

0 commit comments

Comments
 (0)