From ea80a2afc0be7670b4e7d369803e0b974e176c52 Mon Sep 17 00:00:00 2001 From: NicJA Date: Thu, 25 Apr 2019 18:32:01 +0000 Subject: [PATCH] use the correct naming convention for hidd tags. git-svn-id: https://svn.aros.org/svn/aros/trunk/AROS@56337 fb15a70f-31f2-0310-bbcc-cdcc74a49acc --- rom/hidds/gfx/include/gfx.h | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/rom/hidds/gfx/include/gfx.h b/rom/hidds/gfx/include/gfx.h index e9a2d30f00..c2e4ae10a8 100644 --- a/rom/hidds/gfx/include/gfx.h +++ b/rom/hidds/gfx/include/gfx.h @@ -534,13 +534,14 @@ enum #define CLID_Hidd_Gfx IID_Hidd_Gfx +/* Parameter tags for the MemoryAttribs attribute */ enum { - vHidd_Gfx_MemTotal, - vHidd_Gfx_MemFree, - vHidd_Gfx_MemAddressableTotal, // - vHidd_Gfx_MemAddressableFree, - vHidd_Gfx_MemClock, //video card's memory clock in Hz + tHidd_Gfx_MemTotal, // Total video memory + tHidd_Gfx_MemFree, // unused video memory + tHidd_Gfx_MemAddressableTotal, // Total addressable video memory + tHidd_Gfx_MemAddressableFree, // unused addressable video memory + tHidd_Gfx_MemClock, // video card's memory clock in Hz }; /* Compatability types */ -- 2.11.4.GIT