diff options
Diffstat (limited to 'src/core/hw/lcd.h')
-rw-r--r-- | src/core/hw/lcd.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/core/hw/lcd.h b/src/core/hw/lcd.h index bcce6d8cf..d8ece4980 100644 --- a/src/core/hw/lcd.h +++ b/src/core/hw/lcd.h @@ -42,13 +42,13 @@ struct Regs { return sizeof(Regs) / sizeof(u32); } - u32& operator [] (int index) const { - u32* content = (u32*)this; + const u32& operator [] (int index) const { + const u32* content = reinterpret_cast<const u32*>(this); return content[index]; } u32& operator [] (int index) { - u32* content = (u32*)this; + u32* content = reinterpret_cast<u32*>(this); return content[index]; } |