fix: IsFullscreen -> isFullscreen - to much c/c++ coding :(

This commit is contained in:
Brian Matzon 2003-08-06 20:20:10 +00:00
parent 96bd0737e9
commit 977b90cf47
1 changed files with 1 additions and 1 deletions

View File

@ -122,7 +122,7 @@ public final class Window {
/**
* @return whether this window is in fullscreen mode
*/
public static boolean IsFullscreen() {
public static boolean isFullscreen() {
assert isCreated() : "Cannot determine state of uncreated window";
return fullscreen;
}