Fixed (C)Pixel .pbm protection on 32-bit builds
This commit is contained in:
parent
84db90c794
commit
38b846487a
1 changed files with 1 additions and 4 deletions
|
@ -66,18 +66,15 @@ bool Flip_SystemTask()
|
||||||
|
|
||||||
static bool IsEnableBitmap(SDL_RWops *fp)
|
static bool IsEnableBitmap(SDL_RWops *fp)
|
||||||
{
|
{
|
||||||
return true;
|
|
||||||
/*
|
|
||||||
char str[16];
|
char str[16];
|
||||||
const char *extra_text = "(C)Pixel";
|
const char *extra_text = "(C)Pixel";
|
||||||
|
|
||||||
const size_t len = strlen(extra_text);
|
const size_t len = strlen(extra_text);
|
||||||
|
|
||||||
fp->seek(fp, -len, RW_SEEK_END);
|
fp->seek(fp, -(Sint64)len, RW_SEEK_END);
|
||||||
fp->read(fp, str, 1, len);
|
fp->read(fp, str, 1, len);
|
||||||
fp->seek(fp, 0, RW_SEEK_SET);
|
fp->seek(fp, 0, RW_SEEK_SET);
|
||||||
return memcmp(str, extra_text, len) == 0;
|
return memcmp(str, extra_text, len) == 0;
|
||||||
*/
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void ReleaseSurface(int s)
|
void ReleaseSurface(int s)
|
||||||
|
|
Loading…
Add table
Reference in a new issue