mirror of
https://github.com/yuzu-emu/yuzu-android.git
synced 2025-06-18 11:58:00 -05:00
Merge pull request #5149 from comex/xx-map-interval
map_interval: Change field order to address uninitialized field warning
This commit is contained in:
@ -84,9 +84,10 @@ private:
|
||||
void FillFreeList(Chunk& chunk);
|
||||
|
||||
std::vector<MapInterval*> free_list;
|
||||
std::unique_ptr<Chunk>* new_chunk = &first_chunk.next;
|
||||
|
||||
Chunk first_chunk;
|
||||
|
||||
std::unique_ptr<Chunk>* new_chunk = &first_chunk.next;
|
||||
};
|
||||
|
||||
} // namespace VideoCommon
|
||||
|
Reference in New Issue
Block a user