diff options
| author | Marcelo Fernandez | 2018-03-04 14:18:05 -0300 |
|---|---|---|
| committer | Marcelo Fernandez | 2018-03-04 14:18:05 -0300 |
| commit | d780d774aa4630302fddbef0516e3f96beacd7b5 (patch) | |
| tree | 15f3ee3c64b4882b7d2bf399d8f68755feda2ba3 /drivers/unix | |
| parent | e619727e999ecd8e6883330f2c6950cd0624de99 (diff) | |
| download | godot-d780d774aa4630302fddbef0516e3f96beacd7b5.tar.gz godot-d780d774aa4630302fddbef0516e3f96beacd7b5.tar.zst godot-d780d774aa4630302fddbef0516e3f96beacd7b5.zip | |
Diffstat (limited to 'drivers/unix')
| -rw-r--r-- | drivers/unix/os_unix.cpp | 9 | ||||
| -rw-r--r-- | drivers/unix/os_unix.h | 6 |
2 files changed, 0 insertions, 15 deletions
diff --git a/drivers/unix/os_unix.cpp b/drivers/unix/os_unix.cpp index aa01f2267..20722557e 100644 --- a/drivers/unix/os_unix.cpp +++ b/drivers/unix/os_unix.cpp @@ -73,15 +73,6 @@ void OS_Unix::debug_break() { assert(false); }; -int OS_Unix::get_audio_driver_count() const { - - return 1; -} -const char *OS_Unix::get_audio_driver_name(int p_driver) const { - - return "dummy"; -} - int OS_Unix::unix_initialize_audio(int p_audio_driver) { return 0; diff --git a/drivers/unix/os_unix.h b/drivers/unix/os_unix.h index a7c901533..db0fe1e00 100644 --- a/drivers/unix/os_unix.h +++ b/drivers/unix/os_unix.h @@ -48,12 +48,6 @@ protected: // UNIX only handles the core functions. // inheriting platforms under unix (eg. X11) should handle the rest - //virtual int get_video_driver_count() const; - //virtual const char * get_video_driver_name(int p_driver) const; - - virtual int get_audio_driver_count() const; - virtual const char *get_audio_driver_name(int p_driver) const; - virtual void initialize_core(); virtual int unix_initialize_audio(int p_audio_driver); //virtual Error initialize(int p_video_driver,int p_audio_driver); |
