diff options
| author | hurikhan | 2015-01-10 18:38:30 +0800 |
|---|---|---|
| committer | hurikhan | 2015-01-10 18:38:30 +0800 |
| commit | 0d2ec19082e9ebff07ab1ab8e365e2db9ee3268b (patch) | |
| tree | 4cbd68a88fcf4e473a1a6a55a3c316417dd31add /core/os | |
| parent | cd90215ceca03b456aad761da935c92058b0da6a (diff) | |
| download | godot-0d2ec19082e9ebff07ab1ab8e365e2db9ee3268b.tar.gz godot-0d2ec19082e9ebff07ab1ab8e365e2db9ee3268b.tar.zst godot-0d2ec19082e9ebff07ab1ab8e365e2db9ee3268b.zip | |
API change to set_fullscreen(enabled,screen)
Diffstat (limited to 'core/os')
| -rw-r--r-- | core/os/os.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/os/os.h b/core/os/os.h index e8de28e86..b86b12262 100644 --- a/core/os/os.h +++ b/core/os/os.h @@ -151,7 +151,7 @@ public: virtual void get_fullscreen_mode_list(List<VideoMode> *p_list,int p_screen=0) const=0; //MSC - virtual void set_fullscreen(bool fullscreen)=0; + virtual void set_fullscreen(bool p_enabled,int p_screen=0)=0; virtual bool is_fullscreen() const=0; virtual void set_iterations_per_second(int p_ips); |
