Skip to content

Commit

Permalink
!!! fix compilaton (unique_ptr)
Browse files Browse the repository at this point in the history
  • Loading branch information
maxrd2 committed Oct 27, 2023
1 parent d786220 commit 4896674
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sgp/VObject_Blitters.cc
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ Blt32_Texture(
SLOGW("Invalid Z-Strip index requested on multi-Z object");
return;
}
const ZStripInfo *zInfo = srcObj->ppZStripInfo[zStripIndex];
const ZStripInfo *zInfo = srcObj->ppZStripInfo[zStripIndex].get();
if(zInfo == nullptr) {
SLOGW("Missing Z-Strip info on multi-Z object");
return;
Expand Down

0 comments on commit 4896674

Please sign in to comment.