Skip to content

Commit

Permalink
Fix compilation with msvc.
Browse files Browse the repository at this point in the history
  • Loading branch information
Jarod42 committed Mar 15, 2024
1 parent d6db3eb commit 58b4059
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/libgrp/GRPImage/GRPImage.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ bool GRPImage::DetectUncompressed(std::vector<char> *inputImage)
imagePayload += tempWidth * tempHeight;
}

uniqueGRPImages.insert(std::make_pair<uint32_t,bool>((uint32_t)tempDataOffset,true));
uniqueGRPImages.insert(std::make_pair(tempDataOffset, true));

if(firstOffset == 0)
{
Expand Down

0 comments on commit 58b4059

Please sign in to comment.