mirror of
https://github.com/love2d/love.git
synced 2026-08-16 00:02:12 +02:00
Rename *OutputDevice(s) to *PlaybackDevice(s)
This commit is contained in:
@@ -211,12 +211,12 @@ void Audio::resumeContext()
|
||||
{
|
||||
}
|
||||
|
||||
std::string Audio::getOutputDevice()
|
||||
std::string Audio::getPlaybackDevice()
|
||||
{
|
||||
return "";
|
||||
}
|
||||
|
||||
void Audio::getOutputDevices(std::vector<std::string> &/*list*/)
|
||||
void Audio::getPlaybackDevices(std::vector<std::string> &/*list*/)
|
||||
{
|
||||
}
|
||||
|
||||
|
||||
@@ -89,8 +89,8 @@ public:
|
||||
void pauseContext();
|
||||
void resumeContext();
|
||||
|
||||
std::string getOutputDevice();
|
||||
void getOutputDevices(std::vector<std::string> &list);
|
||||
std::string getPlaybackDevice();
|
||||
void getPlaybackDevices(std::vector<std::string> &list);
|
||||
|
||||
private:
|
||||
float volume;
|
||||
|
||||
Reference in New Issue
Block a user