summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/nvdrv/nvdrv.h
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2018-07-25 23:37:41 +0200
committerLioncash <mathew1800@gmail.com>2018-07-25 23:37:43 +0200
commitf9951352f6e3b931a1046a3a85a5b356ebd9bf5b (patch)
tree8988e909b4754a20dc2a7dfdddd11b0afc862d2a /src/core/hle/service/nvdrv/nvdrv.h
parentservice/nvdrv: Use std::move where applicable (diff)
downloadyuzu-f9951352f6e3b931a1046a3a85a5b356ebd9bf5b.tar
yuzu-f9951352f6e3b931a1046a3a85a5b356ebd9bf5b.tar.gz
yuzu-f9951352f6e3b931a1046a3a85a5b356ebd9bf5b.tar.bz2
yuzu-f9951352f6e3b931a1046a3a85a5b356ebd9bf5b.tar.lz
yuzu-f9951352f6e3b931a1046a3a85a5b356ebd9bf5b.tar.xz
yuzu-f9951352f6e3b931a1046a3a85a5b356ebd9bf5b.tar.zst
yuzu-f9951352f6e3b931a1046a3a85a5b356ebd9bf5b.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/service/nvdrv/nvdrv.h2
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.