diff options
author | bunnei <bunneidev@gmail.com> | 2018-07-26 04:02:08 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-07-26 04:02:08 +0200 |
commit | b0adb9a3d9f91e31231bef33792cbf08cc7ecd7f (patch) | |
tree | 16c428f77b608d37d75c701d55efa94d090be0f4 /src/core/hle/service/nvdrv/nvdrv.h | |
parent | Merge pull request #822 from lioncash/pm (diff) | |
parent | service/nvdrv: Take std::string in Open() by const reference (diff) | |
download | yuzu-b0adb9a3d9f91e31231bef33792cbf08cc7ecd7f.tar yuzu-b0adb9a3d9f91e31231bef33792cbf08cc7ecd7f.tar.gz yuzu-b0adb9a3d9f91e31231bef33792cbf08cc7ecd7f.tar.bz2 yuzu-b0adb9a3d9f91e31231bef33792cbf08cc7ecd7f.tar.lz yuzu-b0adb9a3d9f91e31231bef33792cbf08cc7ecd7f.tar.xz yuzu-b0adb9a3d9f91e31231bef33792cbf08cc7ecd7f.tar.zst yuzu-b0adb9a3d9f91e31231bef33792cbf08cc7ecd7f.zip |
Diffstat (limited to 'src/core/hle/service/nvdrv/nvdrv.h')
-rw-r--r-- | src/core/hle/service/nvdrv/nvdrv.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/service/nvdrv/nvdrv.h b/src/core/hle/service/nvdrv/nvdrv.h index 35b2c65fc..184f3c9fc 100644 --- a/src/core/hle/service/nvdrv/nvdrv.h +++ b/src/core/hle/service/nvdrv/nvdrv.h @@ -38,7 +38,7 @@ public: } /// Opens a device node and returns a file descriptor to it. - u32 Open(std::string device_name); + u32 Open(const std::string& device_name); /// Sends an ioctl command to the specified file descriptor. u32 Ioctl(u32 fd, u32 command, const std::vector<u8>& input, std::vector<u8>& output); /// Closes a device file descriptor and returns operation success. |