mirror of
https://github.com/dhewm/dhewm3.git
synced 2025-04-19 08:58:56 +00:00
Fix x64 build.
This commit is contained in:
parent
8d5deda05f
commit
0ef7697025
1 changed files with 1 additions and 1 deletions
|
@ -294,7 +294,7 @@ void PathTreeCtrl::DrawNode( PathTreeNode *node, treeItemTooltip_t tooltip, tre
|
|||
flags |= ImGuiTreeNodeFlags_NoTreePushOnOpen;
|
||||
}
|
||||
|
||||
if ( ImGui::TreeNodeEx( ( const void * )node->GetID(), flags, "%s", node->GetLabel().c_str() ) ) {
|
||||
if ( ImGui::TreeNodeEx( static_cast<const void *>(node), flags, "%s", node->GetLabel().c_str() ) ) {
|
||||
if ( ImGui::IsItemClicked() && !ImGui::IsItemToggledOpen() ) {
|
||||
SelectItem( node );
|
||||
selected( data );
|
||||
|
|
Loading…
Reference in a new issue