mirror of
https://github.com/libretro/scummvm.git
synced 2025-04-02 23:01:42 +00:00
SWORD25: Silence C++11 narrowing warnings.
This commit is contained in:
parent
3d9d7ab4f8
commit
fe1a779441
@ -376,10 +376,10 @@ bool GraphicEngine::saveThumbnailScreenshot(const Common::String &filename) {
|
||||
|
||||
void GraphicEngine::ARGBColorToLuaColor(lua_State *L, uint color) {
|
||||
lua_Number components[4] = {
|
||||
(color >> 16) & 0xff, // Rot
|
||||
(color >> 8) & 0xff, // Grün
|
||||
color & 0xff, // Blau
|
||||
color >> 24, // Alpha
|
||||
(lua_Number)((color >> 16) & 0xff), // Rot
|
||||
(lua_Number)((color >> 8) & 0xff), // Grün
|
||||
(lua_Number)(color & 0xff), // Blau
|
||||
(lua_Number)(color >> 24), // Alpha
|
||||
};
|
||||
|
||||
lua_newtable(L);
|
||||
|
Loading…
x
Reference in New Issue
Block a user