Skip to content

Commit

Permalink
- silence some warnings.
Browse files Browse the repository at this point in the history
  • Loading branch information
coelckers committed Jan 7, 2023
1 parent 1a0aa95 commit 4c751db
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/common/textures/formats/rawpagetexture.cpp
Expand Up @@ -62,7 +62,7 @@ class FRawPageTexture : public FImageSource
//
//==========================================================================

bool CheckIfRaw(FileReader & data, int desiredsize)
bool CheckIfRaw(FileReader & data, unsigned desiredsize)
{
if (data.GetLength() != desiredsize) return false;

Expand Down
2 changes: 1 addition & 1 deletion src/common/textures/formats/startuptexture.cpp
Expand Up @@ -109,7 +109,7 @@ class FStrifeStartupBackground : public FImageSource
//
//==========================================================================

bool CheckIfRaw(FileReader & data, int desiredsize);
bool CheckIfRaw(FileReader & data, unsigned desiredsize);

//==========================================================================
//
Expand Down

0 comments on commit 4c751db

Please sign in to comment.