diff options
| -rw-r--r-- | src/core/hle/service/nvflinger/nvflinger.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/core/hle/service/nvflinger/nvflinger.h b/src/core/hle/service/nvflinger/nvflinger.h index 5ba64a4ce..8f9a0a7f8 100644 --- a/src/core/hle/service/nvflinger/nvflinger.h +++ b/src/core/hle/service/nvflinger/nvflinger.h | |||
| @@ -85,11 +85,12 @@ private: | |||
| 85 | 85 | ||
| 86 | std::shared_ptr<Nvidia::Module> nvdrv; | 86 | std::shared_ptr<Nvidia::Module> nvdrv; |
| 87 | 87 | ||
| 88 | std::array<Display, 4> displays{{ | 88 | std::array<Display, 5> displays{{ |
| 89 | {0, "Default"}, | 89 | {0, "Default"}, |
| 90 | {1, "External"}, | 90 | {1, "External"}, |
| 91 | {2, "Edid"}, | 91 | {2, "Edid"}, |
| 92 | {3, "Internal"}, | 92 | {3, "Internal"}, |
| 93 | {4, "Null"}, | ||
| 93 | }}; | 94 | }}; |
| 94 | std::vector<std::shared_ptr<BufferQueue>> buffer_queues; | 95 | std::vector<std::shared_ptr<BufferQueue>> buffer_queues; |
| 95 | 96 | ||