diff options
| author | Liam <byteslice@airmail.cc> | 2022-12-23 20:57:36 -0500 |
|---|---|---|
| committer | Liam <byteslice@airmail.cc> | 2022-12-23 20:57:36 -0500 |
| commit | 646656412f71a554601173cac7a1d57af9a5232f (patch) | |
| tree | b1c0e089d2a8ca6aa2a4bdeb401dc3cf35b9966a /src | |
| parent | ae6015a69b211a98f9ef97d73b5c301c359ca35f (diff) | |
qt: fix uninitialized memory usage
Diffstat (limited to 'src')
| -rw-r--r-- | src/yuzu/main.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/yuzu/main.h b/src/yuzu/main.h index ce1de17ef..95220b063 100644 --- a/src/yuzu/main.h +++ b/src/yuzu/main.h @@ -390,7 +390,7 @@ private: GameList* game_list; LoadingScreen* loading_screen; QTimer shutdown_timer; - OverlayDialog* shutdown_dialog; + OverlayDialog* shutdown_dialog{}; GameListPlaceholder* game_list_placeholder; |
