Skip to content

Commit

Permalink
uint -> DWORD
Browse files Browse the repository at this point in the history
  • Loading branch information
poeticAndroid committed Nov 13, 2019
1 parent 8066ada commit cbe6c02
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/image_loader.d
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ FIMEMORY* readfile(string filename)
void writefile(string filename, FIMEMORY* mem)
{
ubyte* bin;
uint len;
DWORD len;
FreeImage_AcquireMemory(mem, &bin, &len);
auto f = File(filename, "wb");
for (uint i = 0; i < len; i++)
Expand Down

0 comments on commit cbe6c02

Please sign in to comment.