diff options
| author | 2014-12-03 12:57:57 -0600 | |
|---|---|---|
| committer | 2014-12-03 12:57:57 -0600 | |
| commit | 8a624239703c046d89ebeaf3ea13c87af75b550f (patch) | |
| tree | 19546d2b06c71add6140f322a8aab0c918bbd9ca /src/citra_qt/bootmanager.cpp | |
| parent | Merge pull request #236 from rohit-n/sign-compare (diff) | |
| download | yuzu-8a624239703c046d89ebeaf3ea13c87af75b550f.tar.gz yuzu-8a624239703c046d89ebeaf3ea13c87af75b550f.tar.xz yuzu-8a624239703c046d89ebeaf3ea13c87af75b550f.zip | |
Change NULLs to nullptrs.
Diffstat (limited to '')
| -rw-r--r-- | src/citra_qt/bootmanager.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/citra_qt/bootmanager.cpp b/src/citra_qt/bootmanager.cpp index 9bf079919..9a29f974b 100644 --- a/src/citra_qt/bootmanager.cpp +++ b/src/citra_qt/bootmanager.cpp | |||
| @@ -230,7 +230,7 @@ QByteArray GRenderWindow::saveGeometry() | |||
| 230 | { | 230 | { |
| 231 | // If we are a top-level widget, store the current geometry | 231 | // If we are a top-level widget, store the current geometry |
| 232 | // otherwise, store the last backup | 232 | // otherwise, store the last backup |
| 233 | if (parent() == NULL) | 233 | if (parent() == nullptr) |
| 234 | return ((QGLWidget*)this)->saveGeometry(); | 234 | return ((QGLWidget*)this)->saveGeometry(); |
| 235 | else | 235 | else |
| 236 | return geometry; | 236 | return geometry; |