diff options
author | scop <scop> | 2005-03-30 20:35:20 +0000 |
---|---|---|
committer | scop <scop> | 2005-03-30 20:35:20 +0000 |
commit | 7fb6971a48bb3087e4195b21a92c0b68e8d956fe (patch) | |
tree | 53828c9a1cc7577864564f6ba7ad5274ce948616 | |
parent | d6e28a8dd767a608243d16bf1660c53665bcf3ac (diff) | |
download | vdr-plugin-dxr3-7fb6971a48bb3087e4195b21a92c0b68e8d956fe.tar.gz vdr-plugin-dxr3-7fb6971a48bb3087e4195b21a92c0b68e8d956fe.tar.bz2 |
m_pal is uint32_t, from patch by Martin Cap.
-rw-r--r-- | CONTRIBUTORS | 1 | ||||
-rw-r--r-- | dxr3palettemanager.c | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/CONTRIBUTORS b/CONTRIBUTORS index 5385974..aa74272 100644 --- a/CONTRIBUTORS +++ b/CONTRIBUTORS @@ -3,6 +3,7 @@ one way or the another. Without their help, the plugin would not be as good as it is now. Jon Burgess +Martin Cap Stuart Daines Martin Dauskardt Peter Dittmann diff --git a/dxr3palettemanager.c b/dxr3palettemanager.c index 745e030..b93eaeb 100644 --- a/dxr3palettemanager.c +++ b/dxr3palettemanager.c @@ -21,7 +21,7 @@ cDxr3PaletteManager::cDxr3PaletteManager() { memset(m_colors, 0, sizeof(int) * MAX_COLORS); memset(m_users, 0, sizeof(int) * MAX_COLORS); - memset(m_pal, 0, sizeof(int) * MAX_COLORS); + memset(m_pal, 0, sizeof(uint32_t) * MAX_COLORS); m_changed = false; }; |