[Scummvm-git-logs] scummvm master -> 69a386aff73da45d3dd6defb80ad26e1120a08d7
dwatteau
noreply at scummvm.org
Wed Jan 18 20:38:36 UTC 2023
This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .
Summary:
69a386aff7 GRAPHICS: Fix MSVC C4309 enum sign warning
Commit: 69a386aff73da45d3dd6defb80ad26e1120a08d7
https://github.com/scummvm/scummvm/commit/69a386aff73da45d3dd6defb80ad26e1120a08d7
Author: Donovan Watteau (contrib at dwatteau.fr)
Date: 2023-01-18T21:24:49+01:00
Commit Message:
GRAPHICS: Fix MSVC C4309 enum sign warning
Changed paths:
graphics/colormasks.h
diff --git a/graphics/colormasks.h b/graphics/colormasks.h
index 4e5da823405..68a8b3fd7e1 100644
--- a/graphics/colormasks.h
+++ b/graphics/colormasks.h
@@ -288,7 +288,7 @@ struct ColorMasks<8888> {
template<>
struct ColorMasks<-8888> {
- enum {
+ enum : uint {
kBytesPerPixel = 4,
kAlphaBits = 8,
More information about the Scummvm-git-logs
mailing list