mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-10-20 00:07:50 +00:00
video_core: Resolve more variable shadowing scenarios pt.3
Cleans out the rest of the occurrences of variable shadowing and makes any further occurrences of shadowing compiler errors.
This commit is contained in:
parent
fe9823a520
commit
5db4785535
49 changed files with 303 additions and 290 deletions
|
@ -146,7 +146,7 @@ enum class MsaaMode : u32 {
|
|||
};
|
||||
|
||||
union TextureHandle {
|
||||
TextureHandle(u32 raw) : raw{raw} {}
|
||||
/* implicit */ TextureHandle(u32 raw_) : raw{raw_} {}
|
||||
|
||||
u32 raw;
|
||||
BitField<0, 20, u32> tic_id;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue