This website works better with JavaScript.
Home
Help
Sign In
lolengine
/
lol
mirror of
https://github.com/lolengine/lol
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
0
Wiki
Activity
Browse Source
image: fix an invalid implicit cast on Win32.
legacy
Sam Hocevar
sam
11 years ago
parent
f16704ecb0
commit
3106fcfd9d
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
src/image/codec/gdiplus-image.cpp
+ 1
- 1
src/image/codec/gdiplus-image.cpp
View File
@@ -149,7 +149,7 @@ bool GdiPlusImageData::Close()
uint8_t * GdiPlusImageData::GetData() const
{
return m_bdata.Scan0;
return
static_cast<uint8_t *>(
m_bdata.Scan0
)
;
}
} /* namespace lol */
Write
Preview
Loading…
Cancel
Save