Haiku: some small fixes

This commit is contained in:
Kostadin Damyanov
2015-05-25 06:34:16 +03:00
parent 27285f1bcc
commit d747dd58c2
2 changed files with 5 additions and 1 deletions

View File

@@ -79,3 +79,7 @@ OS::VideoMode OS_Haiku::get_video_mode(int p_screen) const {
void OS_Haiku::get_fullscreen_mode_list(List<VideoMode> *p_list, int p_screen) const {
}
String OS_Haiku::get_executable_path() const {
return OS::get_executable_path();
}

View File

@@ -1,7 +1,6 @@
#ifndef OS_HAIKU_H
#define OS_HAIKU_H
#include "os/os.h"
#include "drivers/unix/os_unix.h"
@@ -38,6 +37,7 @@ public:
virtual void set_video_mode(const VideoMode& p_video_mode, int p_screen=0);
virtual VideoMode get_video_mode(int p_screen=0) const;
virtual void get_fullscreen_mode_list(List<VideoMode> *p_list, int p_screen=0) const;
virtual String get_executable_path() const;
};
#endif